1
0
Fork 0
mirror of https://github.com/kaminari/kaminari.git synced 2022-11-09 13:44:37 -05:00

Squash "warning: ambiguous first argument; put parentheses or even spaces"

This commit is contained in:
Yuki Nishijima 2014-03-27 18:22:59 -07:00
parent 544acb4deb
commit 925d626a73

View file

@ -20,22 +20,22 @@ describe 'Kaminari::Helpers' do
context "for first page" do
subject { Tag.new(helper, :param_name => "user[page]").page_url_for(1) }
if ActiveSupport::VERSION::STRING < "3.1.0"
it { should_not match /user\[page\]/ }
it { should match /user\[scope\]=active/ }
it { should_not match(/user\[page\]/) }
it { should match(/user\[scope\]=active/) }
else
it { should_not match /user%5Bpage%5D/ } # not match user[page]
it { should match /user%5Bscope%5D=active/ } # match user[scope]=active
it { should_not match(/user%5Bpage%5D/) } # not match user[page]
it { should match(/user%5Bscope%5D=active/) } # match user[scope]=active
end
end
context "for other page" do
subject { Tag.new(helper, :param_name => "user[page]").page_url_for(2) }
if ActiveSupport::VERSION::STRING < "3.1.0"
it { should match /user\[page\]=2/ }
it { should match /user\[scope\]=active/ }
it { should match(/user\[page\]=2/) }
it { should match(/user\[scope\]=active/) }
else
it { should match /user%5Bpage%5D=2/ } # match user[page]=2
it { should match /user%5Bscope%5D=active/ } # match user[scope]=active
it { should match(/user%5Bpage%5D=2/) } # match user[page]=2
it { should match(/user%5Bscope%5D=active/) } # match user[scope]=active
end
end
end