Sha256: e157c954a83198aa99f8ff148e482e597355dce03c88b2eaa1a374e63999e8dd

Contents?: true

Size: 929 Bytes

Versions: 1

Compression:

Stored size: 929 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 "Account URL" with "robotsinc"
    And I press "Sign up"
    Then I should see "created"

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
saucy-0.1.11 lib/generators/saucy/features/templates/features/sign_up.feature