Created
July 25, 2011 09:16
-
-
Save azuby/1103810 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
e 'spec_helper' | |
describe UsersController do | |
render_views | |
describe "GET 'new'" do | |
it "should be successful" do | |
get 'new' | |
response.should be_success | |
end | |
it "should have the right title" do | |
get 'new' | |
response.should have_selector("title", :content => "SyncIn | Sign Up") | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment