Sha256: 1dd9e7d82891310af8fd08243c66b4d8d7c295f538b1b9789d6248aae1acbcfe

Contents?: true

Size: 1.38 KB

Versions: 13

Compression:

Stored size: 1.38 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 list of accounts
    And I follow "Settings" within ".account-header"
    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

13 entries across 13 versions & 1 rubygems

Version Path
saucy-0.2.24 lib/generators/saucy/features/templates/features/manage_account.feature
saucy-0.2.21 lib/generators/saucy/features/templates/features/manage_account.feature
saucy-0.2.20 lib/generators/saucy/features/templates/features/manage_account.feature
saucy-0.2.18 lib/generators/saucy/features/templates/features/manage_account.feature
saucy-0.2.17 lib/generators/saucy/features/templates/features/manage_account.feature
saucy-0.2.16 lib/generators/saucy/features/templates/features/manage_account.feature
saucy-0.2.15 lib/generators/saucy/features/templates/features/manage_account.feature
saucy-0.2.14 lib/generators/saucy/features/templates/features/manage_account.feature
saucy-0.2.13 lib/generators/saucy/features/templates/features/manage_account.feature
saucy-0.2.12 lib/generators/saucy/features/templates/features/manage_account.feature
saucy-0.2.11 lib/generators/saucy/features/templates/features/manage_account.feature
saucy-0.2.10 lib/generators/saucy/features/templates/features/manage_account.feature
saucy-0.2.9 lib/generators/saucy/features/templates/features/manage_account.feature