Sha256: eec449899101630ef1114519a4d30588657982d0b207dd5fb9444ebee65d5d20

Contents?: true

Size: 936 Bytes

Versions: 21

Compression:

Stored size: 936 Bytes

Contents

Feature: Forks API

  Background:
    Given I have "Github::Repos::Forks" 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 "repos/forks/list"
    Then the response status should be 200
      And the response type should be JSON
      And the response should not be empty

  Scenario: List with sort

    Given I want to list resources with the following params:
      | user         | repo   |
      | peter-murach | github |
    And I pass the following request options:
      | sort   |
      | oldest |
    When I make request within a cassette named "repos/forks/list_sort"
    Then the response status should be 200
      And the response type should be JSON
      And the response should not be empty
      And the response first item created_at should be 2011-10-03T20:19:43Z

Version data entries

21 entries across 21 versions & 1 rubygems

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