Sha256: e13f90bd04455ee2d71282d905b0e89b4c49f1df530e0f8307d65d8dab35375d

Contents?: true

Size: 925 Bytes

Versions: 7

Compression:

Stored size: 925 Bytes

Contents

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

  Background:
    Given a plan exists with a name of "Free"

  Scenario: User signs up with invalid data
    When I go to the sign up page for the "Free" plan
    And I fill in "Email" with "invalidemail"
    And I fill in "Password" with "password"
    And I fill in "Confirm 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 list of plans page
    And I follow "Free"
    And I fill in "Email" with "email@person.com"
    And I fill in "Password" with "password"
    And I fill in "Confirm password" with "password"
    And I fill in "Your name" with "Robot"
    And I fill in "Company Name" with "Robots, Inc"
    And I fill in "Keyword" with "robotsinc"
    And I press "Sign up"
    Then I should see "created"

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
saucy-0.1.18 lib/generators/saucy/features/templates/features/sign_up.feature
saucy-0.1.17 lib/generators/saucy/features/templates/features/sign_up.feature
saucy-0.1.16 lib/generators/saucy/features/templates/features/sign_up.feature
saucy-0.1.15 lib/generators/saucy/features/templates/features/sign_up.feature
saucy-0.1.14 lib/generators/saucy/features/templates/features/sign_up.feature
saucy-0.1.13 lib/generators/saucy/features/templates/features/sign_up.feature
saucy-0.1.12 lib/generators/saucy/features/templates/features/sign_up.feature