Sha256: 27c421b51b0c84238787453c5553ee1684194120a94ca15ff3d078728cd2aa07
Contents?: true
Size: 1.06 KB
Versions: 1
Compression:
Stored size: 1.06 KB
Contents
Feature: Sign up In order to get access to protected sections of the site A user Should be able to sign up Scenario: User signs up with invalid data When I go to the sign up page And I fill in "Email" with "invalidemail" And I fill in "Password" with "password" And I fill in "Verify Password" with "" And I press "Sign Up" Then I should see error messages Scenario: User signs up with valid data When I go to the sign up page And I fill in "Email" with "email@person.com" And I fill in "Password" with "password" And I fill in "Verify Password" with "password" And I press "Sign Up" Then I should see "instructions for confirming" And a confirmation message should be sent to "email@person.com" Scenario: User confirms his account Given I signed up with "email@person.com/password" When I follow the confirmation link sent to "email@person.com" Then I should see "Confirmed email and signed in" And I should be signed in
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
thoughtbot-clearance-0.4.8 | generators/clearance_features/templates/features/sign_up.feature |