forked from piotrmurach/github
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgists.feature
More file actions
94 lines (72 loc) · 2.79 KB
/
gists.feature
File metadata and controls
94 lines (72 loc) · 2.79 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
Feature: Gists API
Background:
Given I have "Github::Client::Gists" instance
Scenario: List all user's gists
Given I want to list resources
And I pass the following request options:
| user |
| piotrmurach |
When I make request within a cassette named "gists/list_users"
Then the response status should be 200
And the response type should be JSON
And the response should not be empty
Scenario: List public gists
Given I want to list resources with the following params:
| public |
| public |
When I make request within a cassette named "gists/list_public"
Then the response status should be 200
And the response type should be JSON
Scenario: List starred gists
Given I want starred resources
When I make request within a cassette named "gists/list_starred"
Then the response status should be 200
And the response type should be JSON
Scenario: Gets a single gist
Given I want to get resource with the following params:
| id |
| 1738161 |
When I make request within a cassette named "gists/get"
Then the response status should be 200
And the response type should be JSON
And the response should not be empty
Scenario: Check if gist is starred
Given I want to starred? resource with the following params:
| id |
| 1738161 |
When I make request within a cassette named "gists/is_starred"
Then the response should equal false
Scenario: Start gist
Given I want to star resource with the following params:
| id |
| 2900588 |
When I make request within a cassette named "gists/star"
Then the response status should be 204
Scenario: Unstart gist
Given I want to unstar resource with the following params:
| id |
| 2900588 |
When I make request within a cassette named "gists/unstar"
Then the response status should be 204
Scenario: Fork gist
Given I want to fork resource with the following params:
| id |
| 2900588 |
When I make request within a cassette named "gists/fork"
Then the response status should be 201
And the response type should be JSON
And the response should not be empty
Scenario: List gist forks
Given I want to forks resources with the following params:
| id |
| 2900588 |
When I make request within a cassette named "gists/list_forks"
Then the response status should be 200
And the response type should be JSON
Scenario: List gist commits
Given I want to commits resources with the following params:
| id |
| 2900588 |
When I make request within a cassette named "gists/list_commits"
Then the response status should be 200
And the response type should be JSON