Sha256: 89d831a18d322eeeb550048a2167d3f27d7a4f3dd5e76dfbe03dc2872d163484

Contents?: true

Size: 699 Bytes

Versions: 11

Compression:

Stored size: 699 Bytes

Contents

Feature: Users API

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

  Scenario: Get authenticated user

    Given I want to get resource
    When I make request within a cassette named "users/get/oauth"
    Then the response status should be 200
      And the response type should be JSON
      And the response should not be empty

  Scenario: Get unauthenticated user

    Given I want to get resource
    And I pass the following request options:
      | user         |
      | peter-murach |
    When I make request within a cassette named "users/get/user"
    Then the response status should be 200
      And the response type should be JSON
      And the response should not be empty

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
github_api-0.8.1 features/users.feature
github_api-0.8.0 features/users.feature
github_api-0.7.2 features/users.feature
github_api-0.7.1 features/users.feature
github_api-0.7.0 features/users.feature
github_api-0.6.5 features/users.feature
github_api-0.6.4 features/users.feature
github_api-0.6.3 features/users.feature
github_api-0.6.2 features/users.feature
github_api-0.6.1 features/users.feature
github_api-0.6.0 features/users.feature