Sha256: 39557859194f36ebac2bdb8a5c60e48911a5b885c6577a9f5929d325ce983a52

Contents?: true

Size: 951 Bytes

Versions: 26

Compression:

Stored size: 951 Bytes

Contents

Feature: Accessing Gists Comments API
  In order to interact with github gist comments
  GithubAPI gem
  Should return the expected results depending on passed parameters

  Background:
    Given I have "Github::Gists::Comments" instance

  Scenario: Lists comments on a gist
    When I want to list resources with the following params:
      | gist_id |
      | 999390  |
      And I make request within a cassette named "gists/comments/all"
    Then the response status should be 200
      And the response type should be JSON
      And the response should have 18 items

#   Scenario: Gets a single gist's comment
#     When I want to get resource with the following params:
#       | gist_id | comment_id |
#       | 999390  | 33663      |
#     And I make request within a cassette named "gists/comments/first"
#     Then the response status should be 200
#       And the response type should be JSON
#       And the response should not be empty

Version data entries

26 entries across 26 versions & 1 rubygems

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