Sha256: 732a044b5b0192a53f565a27e3b6188feaf3ae95791ee32415c6c84bf35dea57
Contents?: true
Size: 554 Bytes
Versions: 25
Compression:
Stored size: 554 Bytes
Contents
Then /^I should see a sidebar titled "([^"]*)"$/ do |title| expect(page).to have_css '.sidebar_section h3', text: title end Then /^I should not see a sidebar titled "([^"]*)"$/ do |title| title = title.tr(' ', '').underscore sidebars = page.all :css, "##{title}_sidebar_section" expect(sidebars.count).to eq 0 end Then(/^I should see a sidebar titled "(.*?)" above sidebar titled "(.*?)"$/) do |top_title, bottom_title| expect(page).to have_css %Q(.sidebar_section:contains('#{top_title}') + .sidebar_section:contains('#{bottom_title}')) end
Version data entries
25 entries across 25 versions & 4 rubygems