Sha256: 83e51743a61415bdae1a94d7c45b3be794e4a2a20040a4f5efab869f53c59a2c

Contents?: true

Size: 1.27 KB

Versions: 3

Compression:

Stored size: 1.27 KB

Contents

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

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

  Scenario: Lists all user's gists
    When I want to list resources with the following params:
      | user          |
      | peter-murach  |
    And I make request within a cassette named "gists/gists/user_all"
    Then the response should be "200"
    And the response type should be "JSON"

  Scenario: Lists all public gists
    When I want to list resources with the following params:
      | user |
      | nil  |
    And I make request within a cassette named "gists/gists/public_all"
    Then the response should be "200"
    And the response type should be "JSON"

  Scenario: Gets a single gist
    When I want to get resource with the following params:
      | gist_id |
      | 1738161 |
    And I make request within a cassette named "gists/gist"
    Then the response should be "200"
    And the response type should be "JSON"

  Scenario: Check if gist is starred
    When I want to starred? resource with the following params:
      | gist_id |
      | 1738161 |
    And I make request within a cassette named "gists/starred"
    Then the response should equal false


Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
github_api-0.5.1 features/gists.feature
github_api-0.5.0 features/gists.feature
github_api-0.5.0.rc1 features/gists.feature