removing @api tag from all acceptance feature files (#7027)

This commit is contained in:
nirajacharya2
2023-08-16 09:29:00 +05:45
committed by GitHub
parent c38095ae67
commit 5f93a22eb9
197 changed files with 274 additions and 428 deletions
@@ -1,4 +1,3 @@
@api
Feature: Space management
As a user with space admin permission
I want to be able to manage all existing project spaces
@@ -90,7 +89,7 @@ Feature: Space management
And the json responded should not contain a space with name "Project"
And the json responded should not contain a space with name "Alice Hansen"
Scenario: space admin user changes the name of the project space
When user "Brian" changes the name of the "Project" space to "New Name" owned by user "Alice"
Then the HTTP status code should be "200"
@@ -116,7 +115,7 @@ Feature: Space management
Then the HTTP status code should be "404"
And the user "Alice" should have a space called "Project"
Scenario: space admin user changes the description of the project space
When user "Brian" changes the description of the "Project" space to "New description" owned by user "Alice"
Then the HTTP status code should be "200"
@@ -142,7 +141,7 @@ Feature: Space management
When user "Carol" tries to change the description of the "Project" space to "New description" owned by user "Alice"
Then the HTTP status code should be "404"
Scenario: space admin user disables the project space
When user "Brian" disables a space "Project" owned by user "Alice"
Then the HTTP status code should be "204"
@@ -162,7 +161,7 @@ Feature: Space management
| Brian |
| Carol |
Scenario: space admin user deletes the project space
Given user "Alice" has disabled a space "Project"
When user "Brian" deletes a space "Project" owned by user "Alice"
@@ -175,7 +174,7 @@ Feature: Space management
When user "Carol" tries to delete a space "Project" owned by user "Alice"
Then the HTTP status code should be "404"
Scenario: space admin user enables the project space
Given user "Alice" has disabled a space "Project"
When user "Brian" restores a disabled space "Project" owned by user "Alice"