Sha256: 10ed7c9135eb18a147e3a6bd0cd5339c393ebfb87672fbb235a0f5bae0a1ddca

Contents?: true

Size: 952 Bytes

Versions: 6

Compression:

Stored size: 952 Bytes

Contents

Feature: Sign up
  In order to get access to protected sections of the site
  As a user
  I want to be able to sign up

    Background:
      Given I am not logged in

    Scenario: User signs up with valid data
      When I sign up with valid user data
      Then I should see a successful sign up message
      
    Scenario: User signs up with invalid email
      When I sign up with an invalid email
      Then I should see an invalid email message

    Scenario: User signs up without password
      When I sign up without a password
      Then I should see a missing password message

    Scenario: User signs up without password confirmation
      When I sign up without a password confirmation
      Then I should see a missing password confirmation message

    Scenario: User signs up with mismatched password and confirmation
      When I sign up with a mismatched password confirmation
      Then I should see a mismatched password message

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
citygate-0.1.1 spec/dummy/features/users/sign_up.feature
citygate-0.1.0 spec/dummy/features/users/sign_up.feature
citygate-0.0.9 spec/dummy/features/users/sign_up.feature
citygate-0.0.8 spec/dummy/features/users/sign_up.feature
citygate-0.0.7 spec/dummy/features/users/sign_up.feature
citygate-0.0.6 spec/dummy/features/users/sign_up.feature