Sha256: 8eac79dc214c76e12e92128950576a7c6c48b739b65be5b02a5ea4d0b292a57b
Contents?: true
Size: 506 Bytes
Versions: 12
Compression:
Stored size: 506 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
12 entries across 12 versions & 3 rubygems