Sha256: 0ed6285b771551c87dc037167c96b10dda9861b0a0305926eb0e69685dcf0e97
Contents?: true
Size: 1.09 KB
Versions: 2
Compression:
Stored size: 1.09 KB
Contents
Feature: Accessing Repos Main API In order to interact with github repositories GithubAPI gem Should return the expected results depending on passed parameters Scenario: Returning all repository branches Given I have "Github::Repos" instance And I am looking for "branches" with the following params: | user | repo | | peter-murach | github | And I make request within a cassette named "repos/branches" Then the response should be "200" Scenario: Returning all repository tags Given I have "Github::Repos" instance And I am looking for "tags" with the following params: | user | repo | | peter-murach | github | And I make request within a cassette named "repos/tags" Then the response should be "200" Scenario: Returning all repositories for the user Given I have "Github::Repos" instance And I am looking for "list_repos" with the following params: | user | | peter-murach | And I make request with hash params within a cassette named "repos/tags" Then the response should be "200"
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
github_api-0.4.1 | features/repos.feature |
github_api-0.4.0 | features/repos.feature |