Sha256: 1b1b9dfb4c11eb13f8e7f86c2bc2dfde9682d7aa5bf14b5c7ad8333b9fe3cae6

Contents?: true

Size: 1.05 KB

Versions: 2

Compression:

Stored size: 1.05 KB

Contents

Feature: Manage account
  As a user
  In order to properly represent my organization
  I want to be able to edit account details

  Scenario: Edit account details
    Given an account exists with a name of "Test"
    And I am signed in as an admin of the "Test" account
    When I go to the settings page for the "Test" account
    Then I should see "Settings for Test"
    When I fill in "Account name" with "Name Change"
    And I press "Update"
    When I follow "Name Change"
    Then the "Account name" field should contain "Name Change"

  Scenario: Account Settings Tab Bar
    Given an account exists with a name of "Test"
    And I am signed in as an admin of the "Test" account
    And a project named "Projection" exists under the "Test" account
    And the user "captain@awesome.com" exists under the "Test" account
    When I go to the settings page for the "Test" account
    And I follow "Projects"
    Then I should see "Projection"
    When I follow "Users"
    Then I should see "captain@awesome.com"
    When I follow "Billing"
    Then I should see "Billing"

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
saucy-0.1.6 lib/generators/saucy/features/templates/features/manage_account.feature
saucy-0.1.5 lib/generators/saucy/features/templates/features/manage_account.feature