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/cost_reports.feature

14 lines
527 B

Feature: Cost Control
Scenario: Editing a cost entry does not duplicate, but update it
Given there is a standard cost control project named "CostProject"
And the project "CostProject" has 1 cost entry with the following:
| units | 1234.0 |
And I am admin
When I am on the Cost Reports page for the project called "CostProject"
When I click on "Edit"
When I fill in "4321.0" for "cost_entry_units"
When I click on "Save"
Then I should see "4321.0"
And I should not see "1234.0"