Sha256: 6eeb08017582e9f3575fad8bcc3a6dec0bcdfec81ae2e5a117affb00e1e240b3

Contents?: true

Size: 1.79 KB

Versions: 27

Compression:

Stored size: 1.79 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::Repos" API

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

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

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

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

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

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

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

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

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

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

Version data entries

27 entries across 27 versions & 1 rubygems

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