Created
January 17, 2013 10:19
-
-
Save mohhasbias/4555070 to your computer and use it in GitHub Desktop.
This file contains 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
require "spec_helper" | |
describe "user registration" do | |
it "allows new users to register with an email address and password" do | |
visit "/users/sign_up" | |
fill_in "Email", :with => "[email protected]" | |
fill_in "Password", :with => "ilovegrapes" | |
fill_in "Password confirmation", :with => "ilovegrapes" | |
click_button "Sign up" | |
page.should have_content("Welcome! You have signed up successfully.") | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment