kanbanworkflowstimelinescrumrubyroadmapproject-planningproject-managementopenprojectangularissue-trackerifcgantt-chartganttbug-trackerboardsbcf
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.
72 lines
3.6 KiB
72 lines
3.6 KiB
Feature: Version Settings
|
|
As a Project Admin
|
|
I want to configure the backlogs plugin
|
|
So that my team and I can work effectively
|
|
|
|
Background:
|
|
Given there is 1 project with:
|
|
| name | ecookbook |
|
|
And I am working in project "ecookbook"
|
|
And the project uses the following modules:
|
|
| backlogs |
|
|
And the backlogs module is initialized
|
|
And there is 1 user with:
|
|
| login | padme |
|
|
And there is a role "project admin"
|
|
And the role "project admin" may have the following rights:
|
|
| manage_versions |
|
|
| view_master_backlog |
|
|
And the user "padme" is a "project admin"
|
|
And the project has the following sprints:
|
|
| name | 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 I am logged in as "padme"
|
|
|
|
Scenario: Creating a new version
|
|
When I go to the versions/new page of the project called "ecookbook"
|
|
And I fill in "version_name" with "Sprint X"
|
|
And I press "Create"
|
|
Then I should be on the settings/versions page of the project called "ecookbook"
|
|
And I should see "Successful creation." within "div.notice"
|
|
And I should see "Sprint X" within "table.versions"
|
|
|
|
Scenario: One can select whether versions are displayed left or right (left is default) in the backlogs page
|
|
When I go to the edit page of the version called "Sprint 001"
|
|
Then there should be a "version[version_settings_attributes][][display]" field within "#content form"
|
|
And the "version[version_settings_attributes][][display]" field within "#content form" should contain "2"
|
|
When I select "right" from "version[version_settings_attributes][][display]"
|
|
And I press "Save"
|
|
Then I should be on the settings/versions page of the project called "ecookbook"
|
|
|
|
Scenario: Inherited versions can also be configured to be displayed left, right or not at all
|
|
Given there is 1 project with:
|
|
| name | parent |
|
|
And I am working in project "parent"
|
|
And the project uses the following modules:
|
|
| backlogs |
|
|
And the project has the following sprints:
|
|
| name | start_date | effective_date | sharing |
|
|
| shared | 2010-01-01 | 2010-01-31 | system |
|
|
And I am working in project "ecookbook"
|
|
When I go to the settings/versions page of the project called "ecookbook"
|
|
Then I should see "Edit" within ".version.shared .buttons"
|
|
When I follow "Edit" within ".version.shared .buttons"
|
|
Then there should be a "version[version_settings_attributes][][display]" field within "#content form"
|
|
And the "version[version_settings_attributes][][display]" field within "#content form" should contain "2"
|
|
When I select "right" from "version[version_settings_attributes][][display]"
|
|
And I press "Save"
|
|
Then I should be on the settings/versions page of the project called "ecookbook"
|
|
|
|
Scenario: There should be a version start date field
|
|
When I go to the edit page of the version called "Sprint 001"
|
|
Then there should be a "version_start_date" field within "#content form"
|
|
|
|
Scenario: former sprint_start_date and start_date are the same
|
|
When I go to the edit page of the version called "Sprint 001"
|
|
And I fill in "2010-01-20" for "version_start_date"
|
|
And I press "Save"
|
|
And I go to the master backlog of the project "ecookbook"
|
|
Then the start date of "Sprint 001" should be "2010-01-20" |