Sha256: 6f2d08792326715b52bbc40ebbf55c40447c3bcf72d37b976a95c94175e9f000

Contents?: true

Size: 855 Bytes

Versions: 5

Compression:

Stored size: 855 Bytes

Contents

Feature: Sign in
  In order to get access to protected sections of the site
  A user
  Should be able to sign in

  Scenario: User is not signed up
    Given no user exists with an email of "email@person.com"
    When I go to the sign in page
    And I sign in as "email@person.com/password"
    Then I should see error messages
    And I should be logged out

  Scenario: User enters wrong password
    Given I am signed up as "email@person.com/password"
    When I go to the sign in page
    And I sign in as "email@person.com/wrongpassword"
    Then I should see error messages
    And I should be logged out

  Scenario: User signs in successfully
    Given I am signed up as "email@person.com/password"
    When I go to the sign in page
    And I sign in as "email@person.com/password"
    Then I should see "Logged in"
    And I should be logged in

Version data entries

5 entries across 5 versions & 1 rubygems

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