Skip to content

Instantly share code, notes, and snippets.

@russ
Created July 27, 2009 21:45
Show Gist options
  • Save russ/156757 to your computer and use it in GitHub Desktop.
Save russ/156757 to your computer and use it in GitHub Desktop.
Feature: Signup
In order to access features of the site
A user
Should be able to sign up
Scenario: Excluded state basic signup with valid data
When I go to the home page
And I fill in "Screen Name" with "user"
And I fill in "Password" with "passwordWith1Number"
And I fill in "Confirm Password" with "passwordWith1Number"
And I fill in "Email Address" with "[email protected]"
And I fill in "Confirm Email Address" with "[email protected]"
And I press "Play Now"
Then I should see "Create Account"
And I fill in "First Name" with "Longbob"
And I fill in "Last Name" with "Longson"
And I select "January 01, 1980" as the date
And I select "United States" from "Country"
And I fill in "State" with "AL"
And I fill in "Postal Code" with "35004"
And I check "terms_and_conditions"
And I press "Start Free Trial"
Then I should see "Congratulations, user!"
And I should see "does offer Exclusive or VIP membership in your state at this time"
Scenario: Included state basic signup with valid data
When I go to the home page
And I fill in "Screen Name" with "user"
And I fill in "Password" with "passwordWith1Number"
And I fill in "Confirm Password" with "passwordWith1Number"
And I fill in "Email Address" with "[email protected]"
And I fill in "Confirm Email Address" with "[email protected]"
And I press "Play Now"
Then I should see "Create Account"
And I fill in "First Name" with "Longbob"
And I fill in "Last Name" with "Longson"
And I select "January 01, 1980" as the date
And I select "United States" from "Country"
And I fill in "State" with "NV"
And I fill in "Postal Code" with "89178"
And I check "terms_and_conditions"
And I press "Start Free Trial"
Then I should see "Continue as a Basic Member"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment