Sha256: d506203210561b40bdf7486bdbfe3c92df7b692ef893b930daf91156d536238b

Contents?: true

Size: 881 Bytes

Versions: 20

Compression:

Stored size: 881 Bytes

Contents

Feature: Pull Requests API

  Background:
    Given I have "Github::PullRequests" instance

  Scenario: List

    Given I want to list resources with the following params:
      | user          | repo   |
      | peter-murach  | github |
      And I pass the following request options:
        | state  |
        | closed |
    When I make request within a cassette named "pull_requests/list"
    Then the response status should be 200
      And the response type should be JSON
      And the response should not be empty

  Scenario: Get

    Given I want to get resource with the following params:
      | user          | repo   | number |
      | peter-murach  | github | 36     |
    When I make request within a cassette named "pull_requests/get"
    Then the response status should be 200
      And the response type should be JSON
      And the response should not be empty

Version data entries

20 entries across 20 versions & 1 rubygems

Version Path
github_api-0.11.3 features/pull_requests.feature
github_api-0.11.2 features/pull_requests.feature
github_api-0.11.1 features/pull_requests.feature
github_api-0.11.0 features/pull_requests.feature
github_api-0.10.2 features/pull_requests.feature
github_api-0.10.1 features/pull_requests.feature
github_api-0.10.0 features/pull_requests.feature
github_api-0.9.7 features/pull_requests.feature
github_api-0.9.6 features/pull_requests.feature
github_api-0.9.5 features/pull_requests.feature
github_api-0.9.4 features/pull_requests.feature
github_api-0.9.3 features/pull_requests.feature
github_api-0.9.2 features/pull_requests.feature
github_api-0.9.1 features/pull_requests.feature
github_api-0.9.0 features/pull_requests.feature
github_api-0.8.11 features/pull_requests.feature
github_api-0.8.10 features/pull_requests.feature
github_api-0.8.9 features/pull_requests.feature
github_api-0.8.8 features/pull_requests.feature
github_api-0.8.7 features/pull_requests.feature