Sha256: 87a600d8d937f6a94e176a6692cdc5f594c50d60a1e13691ed718bb87f1d3d38

Contents?: true

Size: 699 Bytes

Versions: 2

Compression:

Stored size: 699 Bytes

Contents

Feature: Sign up
  In order to be able to make a purchase
  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 "invalid email"
     And I fill in "Password" with "password"
     And I fill in "Password Confirmation" 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 "Password Confirmation" with "password"
    And I press "Create"
    Then I should see "You have signed up successfully."

Version data entries

2 entries across 2 versions & 2 rubygems

Version Path
MyCommerceapi-1.0.0 auth/features/sign_up.feature
MyCommerce-0.0.3 auth/features/sign_up.feature