1+ @project
12Feature : Interacting with the REST API for projects
23 In order to interact with REST API for projects
34 As a user
45 I want to make sure the Redmine server replies with the correct response
56
6- @project
77 Scenario : Creating a project with minimal parameters
88 Given I have a "NativeCurlClient" client
99 When I create a project with name "Test Project" and identifier "test-project"
@@ -29,7 +29,6 @@ Feature: Interacting with the REST API for projects
2929 | name | Test Project |
3030 | identifier | test -project |
3131
32- @project
3332 Scenario : Creating a project with multiple parameters
3433 Given I have a "NativeCurlClient" client
3534 When I create a project with the following data
@@ -51,7 +50,6 @@ Feature: Interacting with the REST API for projects
5150 | is_public | true |
5251 | inherit_members | false |
5352
54- @project
5553 Scenario : Showing a specific project
5654 Given I have a "NativeCurlClient" client
5755 And I create a project with name "Test Project" and identifier "test-project"
@@ -91,7 +89,6 @@ Feature: Interacting with the REST API for projects
9189 | trackers | [] |
9290 | issue_categories | [] |
9391
94- @project
9592 Scenario : Listing of zero projects
9693 Given I have a "NativeCurlClient" client
9794 When I list all projects
@@ -112,7 +109,6 @@ Feature: Interacting with the REST API for projects
112109 | offset | 0 |
113110 | limit | 25 |
114111
115- @project
116112 Scenario : Listing of one project
117113 Given I have a "NativeCurlClient" client
118114 And I create a project with name "Test Project" and identifier "test-project"
@@ -154,7 +150,6 @@ Feature: Interacting with the REST API for projects
154150 updated_on
155151 """
156152
157- @project
158153 Scenario : Updating a project
159154 Given I have a "NativeCurlClient" client
160155 And I create a project with name "Test Project" and identifier "test-project"
@@ -167,7 +162,7 @@ Feature: Interacting with the REST API for projects
167162 And the response has the content ""
168163 And the returned data is exactly ""
169164
170- @project @ since50000
165+ @since50000
171166 Scenario : Closing a project
172167 Given I have a "NativeCurlClient" client
173168 And I create a project with name "Test Project" and identifier "test-project"
@@ -181,7 +176,7 @@ Feature: Interacting with the REST API for projects
181176 | property | value |
182177 | status | 5 |
183178
184- @project @ since50000
179+ @since50000
185180 Scenario : Reopening a project
186181 Given I have a "NativeCurlClient" client
187182 And I create a project with name "Test Project" and identifier "test-project"
@@ -196,7 +191,7 @@ Feature: Interacting with the REST API for projects
196191 | property | value |
197192 | status | 1 |
198193
199- @project @ since50000
194+ @since50000
200195 Scenario : Archiving a project
201196 Given I have a "NativeCurlClient" client
202197 And I create a project with name "Test Project" and identifier "test-project"
@@ -206,7 +201,7 @@ Feature: Interacting with the REST API for projects
206201 And the response has the content ""
207202 And the returned data is true
208203
209- @project @ since50000 @error
204+ @since50000 @error
210205 Scenario : Showing an archived project is not possible
211206 Given I have a "NativeCurlClient" client
212207 And I create a project with name "Test Project" and identifier "test-project"
@@ -217,7 +212,7 @@ Feature: Interacting with the REST API for projects
217212 And the response has the content ""
218213 And the returned data is false
219214
220- @project @ since50000
215+ @since50000
221216 Scenario : Unarchiving a project
222217 Given I have a "NativeCurlClient" client
223218 And I create a project with name "Test Project" and identifier "test-project"
@@ -232,7 +227,6 @@ Feature: Interacting with the REST API for projects
232227 | property | value |
233228 | status | 1 |
234229
235- @project
236230 Scenario : Removing a project
237231 Given I have a "NativeCurlClient" client
238232 And I create a project with name "Test Project" and identifier "test-project"
0 commit comments