Sha256: 903ab3e908364cc8cf8a3f2b1ff66f7d8969062636efbce39edb970211bd5d1e

Contents?: true

Size: 1.89 KB

Versions: 4

Compression:

Stored size: 1.89 KB

Contents

Feature: Github API components

  In order to navigate within Github API hierachy
  A user
  I want to be able to with a given Github API instance

  Scenario: Accessing repositories API
    Given I have github instance
    When  I fetch "repos"
    Then  I will have access to "Github::Client::Repos" API

  Scenario: Accessing organizations API
    Given I have github instance
    When  I fetch "orgs"
    Then  I will have access to "Github::Client::Orgs" API

  Scenario: Accessing members API
    Given I have "Github::Client::Orgs" instance
    When  I call members
    Then  I will have access to "Github::Client::Orgs::Members" API

  Scenario: Accessing teams API
    Given I have "Github::Client::Orgs" instance
    When  I call teams
    Then  I will have access to "Github::Client::Orgs::Teams" API

  Scenario: Accessing gists API
    Given I have github instance
    When  I fetch "gists"
    Then  I will have access to "Github::Client::Gists" API

  Scenario: Accessing issues API
    Given I have github instance
    When  I fetch "issues"
    Then  I will have access to "Github::Client::Issues" API

  Scenario: Accessing pull requests API
    Given I have github instance
    When  I fetch "pull_requests"
    Then  I will have access to "Github::Client::PullRequests" API

  Scenario: Accessing git data API
    Given I have github instance
    When  I fetch "git_data"
    Then  I will have access to "Github::Client::GitData" API

  Scenario: Accessing users API
    Given I have github instance
    When  I fetch "users"
    Then  I will have access to "Github::Client::Users" API

  Scenario: Accessing activity API
    Given I have github instance
    When  I fetch "activity"
    Then  I will have access to "Github::Client::Activity" API

  Scenario: Accessing authorizations API
    Given I have github instance
    When  I fetch "oauth"
    Then  I will have access to "Github::Client::Authorizations" API

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
github_api-0.12.3 features/github_api.feature
github_api-0.12.2 features/github_api.feature
github_api-0.12.1 features/github_api.feature
github_api-0.12.0 features/github_api.feature