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

76 lines
2.8 KiB

14 years ago
Feature: Product Owner
As a product owner
14 years ago
I want to manage story details and story priority
So that they get done according to my requirements
14 years ago
Background:
Given the ecookbook project has the backlogs plugin enabled
14 years ago
And I am a product owner of the project
And the project has the following sprints:
| name | sprint_start_date | effective_date |
| sprint 001 | 2010-01-01 | 2010-01-31 |
| sprint 002 | 2010-02-01 | 2010-02-28 |
| sprint 003 | 2010-03-01 | 2010-03-31 |
| sprint 004 | 2010-03-01 | 2010-03-31 |
And the project has the following stories in the product backlog:
| position | subject |
| 1 | Story 1 |
| 2 | Story 2 |
| 3 | Story 3 |
| 4 | Story 4 |
14 years ago
Scenario: View the product backlog
14 years ago
Given I am viewing the master backlog
14 years ago
Then I should see the product backlog
And I should see 4 sprint backlogs
14 years ago
14 years ago
Scenario: Create a new story
Given I am viewing the master backlog
And I want to create a story
14 years ago
And I set the subject of the story to A Whole New Story
When I create the story
Then the 1st story should be A Whole New Story
And the 1st position should be unique
14 years ago
Scenario: Update a story
Given I am viewing the master backlog
14 years ago
And I want to edit the story with subject Story 3
14 years ago
And I set the subject of the story to Relaxdiego was here
And I set the tracker of the story to Bug
When I update the story
14 years ago
Then the story should have a subject of Relaxdiego was here
And the story should have a tracker of Bug
And the story should have a position of 3
14 years ago
Scenario: Close a story
Given I am viewing the master backlog
14 years ago
And I want to edit the story with subject Story 4
And I set the status of the story to Closed
When I update the story
14 years ago
Then the status of the story should be set as closed
14 years ago
14 years ago
Scenario: Move a story to the top
14 years ago
Given I am viewing the master backlog
14 years ago
When I move the 3rd story to the 1st position
Then the 1st story should be Story 3
14 years ago
Scenario: Move a story to the bottom
Given I am viewing the master backlog
14 years ago
When I move the 2nd story to the last position
Then the 4th story should be Story 2
Scenario: Move a story down
Given I am viewing the master backlog
14 years ago
When I move the 2nd story to the 3rd position
Then the 2nd story should be Story 3
And the 3rd story should be Story 2
And the 4th story should be Story 4
Scenario: Move a story up
Given I am viewing the master backlog
14 years ago
When I move the 4th story to the 2nd position
Then the 2nd story should be Story 4
And the 3rd story should be Story 2
And the 4th story should be Story 3