Sha256: 413784af8622fc40cdea44de5c54a1a9d66dcf6321a6f691234c5b3cd3455c45

Contents?: true

Size: 1.46 KB

Versions: 18

Compression:

Stored size: 1.46 KB

Contents

Feature: Github API components

  In order to interact with full Github API
  A user needs to request a Github class 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 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 users API
    Given I have github instance
    When  I fetch "events"
    Then  I will have access to "Github::Events" 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

18 entries across 18 versions & 1 rubygems

Version Path
github_api-0.4.11 features/github_api.feature
github_api-0.4.10 features/github_api.feature
github_api-0.4.9 features/github_api.feature
github_api-0.4.8 features/github_api.feature
github_api-0.4.7 features/github_api.feature
github_api-0.4.6 features/github_api.feature
github_api-0.4.5 features/github_api.feature
github_api-0.4.4 features/github_api.feature
github_api-0.4.3 features/github_api.feature
github_api-0.4.2 features/github_api.feature
github_api-0.4.1 features/github_api.feature
github_api-0.4.0 features/github_api.feature
github_api-0.3.9 features/github_api.feature
github_api-0.3.8 features/github_api.feature
github_api-0.3.7 features/github_api.feature
github_api-0.3.6 features/github_api.feature
github_api-0.3.4 features/github_api.feature
github_api-0.3.3 features/github_api.feature