Sha256: 4c2ac7b55c4ea28d1cf3188b798f24cafea5f1fc4c15ae514cab61b545b53f28

Contents?: true

Size: 881 Bytes

Versions: 2

Compression:

Stored size: 881 Bytes

Contents

Feature:  Authenticate as a Fisheye/Crucible user
  As I Fisheye/Crucible user
  I want to be able to login
  So that I can programmatically interact with Fisheye and Crucible
  
  @negative
  Scenario: Login with a bad password
    Given a valid user, "gemtest" and password "gemtest1"
    When I login with that user's credentials
    Then I receive an authentication error

  @positive
  Scenario: Login as a valid user
    Given a valid user, "gemtest" and password "gemtest"
    When I login with that user's credentials
    Then I receive a token back from the server

  @positive
  Scenario: Logout from valid session
    Given I have logged in
    When I logout
    Then I receive confirmation that I have logged out

  @negative
  Scenario: Logout when not logged in
    Given I have not logged in
    When I logout
    Then I receive an error telling me I'm not logged in

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
fisheye-crucible-0.0.2 features/authenticate.feature
fisheye-crucible-0.0.1 features/authenticate.feature