Skip to content

Instantly share code, notes, and snippets.

@drale2k
Created January 20, 2012 09:40
Show Gist options
  • Save drale2k/1646455 to your computer and use it in GitHub Desktop.
Save drale2k/1646455 to your computer and use it in GitHub Desktop.
it "should have the right links on the layout" do
visit root_path
response.should have_selector('title', :content => 'Home')
click_link "Home"
response.should have_selector('title', :content => 'Home')
click_link "About"
response.should have_selector('title', :content => 'About')
click_link "Contact"
response.should have_selector('title', :content => 'Contact')
click_link "Help"
response.should have_selector('title', :content => 'Help')
click_link "Sign up"
response.should have_selector('title', :content => 'Sign Up')
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment