-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUS14.feature
25 lines (20 loc) · 909 Bytes
/
US14.feature
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
Feature: Request Admission
As a financial accountant user
I want to accept or reject received requests
So that I can keep control of the data I am allowed to deliver
Scenario: Accepting a Request
Given the financial accountant user wants to accept a received request,
When the user selects the corresponding request and chooses to accept,
Then the request is processed and its status is updated to accepted.
Examples:
| request_id | status |
| 123 | accepted|
| 456 | accepted|
Scenario: Rejecting a Request
Given the financial accountant user wants to reject a received request,
When the user selects the corresponding request and chooses to reject,
Then the request is processed and its status is updated to rejected.
Examples:
| request_id | status |
| 789 | rejected|
| 101 | rejected|