OpenProject is the leading open source project management software.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
openproject/features/set_rate.feature

32 lines
1.4 KiB

Feature: Updating Hourly Rates
Background:
Given there is a standard cost control project named "project1"
And there is 1 user with:
| login | admin |
| admin | true |
And I am already logged in as "admin"
@javascript
Scenario: The project member has a hourly rate valid from today
Given there is an hourly rate with the following:
| project | project1 |
| user | manager |
| valid_from | Date.today |
| rate | 20 |
When I go to the members tab of the settings page of the project "project1"
And I set the hourly rate of user "manager" to "30"
And I go to the hourly rates page of user "manager" of the project called "project1"
Then I should see 1 hourly rate
@javascript
Scenario: The project member does not have a hourly rate valid from today
Given there is an hourly rate with the following:
| project | project1 |
| user | manager |
| valid_from | Date.today - 1 |
| rate | 20 |
When I go to the members tab of the settings page of the project "project1"
And I set the hourly rate of user "manager" to "30"
And I go to the hourly rates page of user "manager" of the project called "project1"
Then I should see 2 hourly rates