-
Notifications
You must be signed in to change notification settings - Fork 105
Expand file tree
/
Copy pathtipping_policies.feature
More file actions
29 lines (26 loc) · 1.11 KB
/
Copy pathtipping_policies.feature
File metadata and controls
29 lines (26 loc) · 1.11 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
Feature: A project collaborator can display the tipping policies of the project
Background:
Given a "github" project named "seldon/seldons-project" exists
And the project collaborators are:
| seldon |
| daneel |
And the project syncs with the remote repo
Scenario: A collaborator changes the tipping policies
Given I'm signed in as "daneel"
When I visit the "seldon/seldons-project github-project" page
Then I should be on the "seldon/seldons-project github-project" page
And I click "Change project settings"
And I fill "Tipping policies" with:
"""
All commits are huge!
Blah blah
"""
And I click "Save the project settings"
Then I should be on the "seldon/seldons-project github-project" page
Then I should see "The project settings have been updated"
Given I sign out
When I visit the "seldon/seldons-project github-project" page
Then I should be on the "seldon/seldons-project github-project" page
Then I should see "All commits are huge!"
And I should see "Blah blah"
And I should see "daneel"