Sha256: 6518e16765ff0a812ff3df915ec87601bbf752babafa9904f83b1fc29c6c8e44

Contents?: true

Size: 682 Bytes

Versions: 5

Compression:

Stored size: 682 Bytes

Contents

Feature: Sign up
  In order to be able to access protected areas of the site
  A visitor
  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 "Confirm" with ""
     And I press "Create"
     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 "Confirm" with "password"
    And I press "Create"
    Then I should see "User created successfully"

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
spree-0.11.4 features/sign_up.feature
spree-0.11.3 features/sign_up.feature
spree-0.11.2 features/sign_up.feature
spree-0.11.1 features/sign_up.feature
spree-0.11.0 features/sign_up.feature