Repository URL to install this package:
|
Version:
1.0.0.pre ▾
|
Then /^I should not see pagination$/ do
expect(page).to_not have_css '.pagination'
end
Then /^I should see pagination with (\d+) pages$/ do |count|
expect(page).to have_css '.pagination span.page', count: count
end