Sha256: ce5e9bee7db8b7793e464549474c91978aaf9701e2e2b4e566b7687c1dd7a6ad

Contents?: true

Size: 1.35 KB

Versions: 3

Compression:

Stored size: 1.35 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
    And I follow "Test"
    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"

  Scenario: Delete account
    Given an account exists with a name of "Chocolate"
    And I am signed in as an admin of the "Chocolate" account
    When I go to the settings page for the "Chocolate" account
    And I follow "Delete"
    Then I should see "Your account has been deleted"
    When I go to the dashboard page
    Then I should not see "Chocolate"

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
saucy-0.2.27 lib/generators/saucy/features/templates/features/manage_account.feature
saucy-0.2.26 lib/generators/saucy/features/templates/features/manage_account.feature
saucy-0.2.25 lib/generators/saucy/features/templates/features/manage_account.feature