Sha256: fcab675edc6d85ae411f2ffb9570cb23e96c8fe7221e3e1eebe7dc4dfaf90185

Contents?: true

Size: 882 Bytes

Versions: 8

Compression:

Stored size: 882 Bytes

Contents

Feature: Accessing Users Keys API

  In order to interact with github user keys
  GithubAPI gem
  Should return the expected results depending on passed parameters

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

  Scenario: Lists all public keys for a user

    Given I want to list resources
      And I pass the following request options:
        | user   |
        | wycats |
    When I make request within a cassette named "users/keys/user_all"
    Then the response status should be 200
      And the response type should be JSON
      And the response should not be empty

  Scenario: Lists all public keys for the authenticted user

    Given I want to list resources
    When I make request within a cassette named "users/keys/user"
    Then the response status should be 200
      And the response type should be JSON
      And the response should be empty

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
github_api-0.11.3 features/users/keys.feature
github_api-0.11.2 features/users/keys.feature
github_api-0.11.1 features/users/keys.feature
github_api-0.11.0 features/users/keys.feature
github_api-0.10.2 features/users/keys.feature
github_api-0.10.1 features/users/keys.feature
github_api-0.10.0 features/users/keys.feature
github_api-0.9.7 features/users/keys.feature