Sha256: 707cc006ac3f9524e8ab7cdd2bd8d689f52ff1af9b1a25d0e605c13ac6a8df81

Contents?: true

Size: 1.05 KB

Versions: 30

Compression:

Stored size: 1.05 KB

Contents

Feature: Assignees API

  Background:
    Given I have "Github::Issues::Assignees" instance

  Scenario: List

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

  Scenario: Check assignee does not belong to repository

    Given I want to check resource with the following params:
      | user         | repo   | assignee |
      | peter-murach | github | wycats   |
    When I make request within a cassette named "issues/assignees/ckeck_not"
    Then the response should be false

  Scenario: Check assignee belongs to repository

    Given I want to check resource with the following params:
      | user         | repo   | assignee     |
      | peter-murach | github | peter-murach |
    When I make request within a cassette named "issues/assignees/ckeck"
    Then the response should be true

Version data entries

30 entries across 30 versions & 1 rubygems

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