Sha256: 2bdf3b6fb03be4178c655de75236e05c92faccc7227de984a01413f788b2d5ad
Contents?: true
Size: 494 Bytes
Versions: 5
Compression:
Stored size: 494 Bytes
Contents
Then /^I should see the site title "([^"]*)"$/ do |title| page.should have_css('h1#site_title', text: title) end Then /^I should not see the site title "([^"]*)"$/ do |title| page.should_not have_css('h1#site_title', text: title) end Then /^I should see the site title image "([^"]*)"$/ do |image| page.should have_css('h1#site_title img', src: image) end Then /^I should see the site title image linked to "([^"]*)"$/ do |url| page.should have_css('h1#site_title a', href: url) end
Version data entries
5 entries across 5 versions & 2 rubygems