Created
January 20, 2012 09:40
-
-
Save drale2k/1646455 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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