Sha256: b969c7e8511c013000bd30065919b4b420ec7fd3b747247cbf61cb141dc417ef

Contents?: true

Size: 746 Bytes

Versions: 2

Compression:

Stored size: 746 Bytes

Contents

Feature: Bamboo REST client
  In order to know more about our build pipeline
  As a Bamboo user
  I want to use Bamboo's REST API

  Background:
    Given I am using the REST client

  Scenario: Fetch plans
    When I fetch all the plans
    Then I should get a list of plans
    And all plans should have a key

  Scenario: Fetch projects
    When I fetch all projects
    Then I should get a list of projects
    And all projects should have a key

  Scenario: Fetch all results
    When I fetch all results
    Then I should get a list of results
    And all results should have a state
  
  Scenario: Authenticated API
    When I log in
    Then I should get a session ID
    When I fetch all results
    Then all results should have a state

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
bamboo-client-0.1.0 features/rest.feature
bamboo-client-0.0.9 features/rest.feature