Skip to content

Instantly share code, notes, and snippets.

@azuby
Created July 25, 2011 09:16
Show Gist options
  • Save azuby/1103810 to your computer and use it in GitHub Desktop.
Save azuby/1103810 to your computer and use it in GitHub Desktop.
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