Sha256: e37399e075283fd714bd6d8b170ad6d8c4264632ccb9070cc4198cbc66a01b9c
Contents?: true
Size: 505 Bytes
Versions: 59
Compression:
Stored size: 505 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
59 entries across 59 versions & 3 rubygems