Sha256: 54275bae78f6e935e30849dcc48dab5ddcd89e831fda3fcfd5e82f5ceadddc41

Contents?: true

Size: 913 Bytes

Versions: 8

Compression:

Stored size: 913 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: Fetch result for specific plan
    When I fetch results for a specific plan
    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

8 entries across 8 versions & 1 rubygems

Version Path
bamboo-client-0.1.8 features/rest.feature
bamboo-client-0.1.7 features/rest.feature
bamboo-client-0.1.6 features/rest.feature
bamboo-client-0.1.5 features/rest.feature
bamboo-client-0.1.4 features/rest.feature
bamboo-client-0.1.3 features/rest.feature
bamboo-client-0.1.2 features/rest.feature
bamboo-client-0.1.1 features/rest.feature