Sha256: b354f409ea583f97a216053390a9d57498bebf87599cd27e355f9ed97b3cb761

Contents?: true

Size: 620 Bytes

Versions: 2

Compression:

Stored size: 620 Bytes

Contents

Feature: Creating an Account
  Background: I have a User
    Given I create a user A

  Scenario: Every Holder should have a default Account
    Then User A has an Account named default

  Scenario: Creating a second Accounts with the same name for a Holder returns original account
    Given User A has an Account named default
    And I create an Account named default for User A
    Then I get the original account

  Scenario: Race condition while creating account
    Given I have the same user in memory
    And I disable the account existence check on those
    When I call 'account' on both it should be possible

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
acts_as_account-1.2.0 features/account/account_creation.feature
acts_as_account-1.1.6 features/account/account_creation.feature