Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
activeadmin / features / step_definitions / menu_steps.rb
Size: Mime:
Then /^I should see a menu item for "([^"]*)"$/ do |name|
  expect(page).to have_css '#tabs li a', text: name
end

Then /^I should not see a menu item for "([^"]*)"$/ do |name|
  expect(page).to_not have_css '#tabs li a', text: name
end

Then /^I should see a nested menu item for "([^"]*)"$/ do |name|
  expect(page).to have_css '#tabs > li > ul > li > a', text: name
end