Sha256: b3674bf0c3f40ea3037509e36481e5909d21432e86bbeaa7d806f646af68f354

Contents?: true

Size: 1.57 KB

Versions: 4

Compression:

Stored size: 1.57 KB

Contents

Feature: Accessing Users Emails API

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

  Background:
    Given I have "Github::Client::Users::Emails" instance

  Scenario: Lists all emails for the authenticated user

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

  Scenario: Add email addresses for the authenticated user

    Given I want to add resource with the following params:
      | email1              | email2            |
      | octocat@example.com | terry@example.com |
    When I make request within a cassette named "users/emails/add"
    Then the response status should be 201
      And the response type should be JSON
      And the response should have 4 items
      And the response should in email contain octocat@example.com
      And the response should in email contain terry@example.com

  Scenario: Remove email addresses for the authenticated user

    Given I want to add resource with the following params:
      | email1              | email2            |
      | octocat@example.com | terry@example.com |
    And I make request within a cassette named "users/emails/add"
    And I want to delete resource with the following params:
      | email               |
      | octocat@example.com |
    When I make request within a cassette named "users/emails/delete"
    Then the response status should be 204

Version data entries

4 entries across 4 versions & 1 rubygems

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