|
|
|
@ -137,8 +137,6 @@ Feature: Scrum Master |
|
|
|
|
@javascript |
|
|
|
|
Scenario: Create an impediment |
|
|
|
|
Given I am on the taskboard for "Sprint 001" |
|
|
|
|
# Give the page time to initialize |
|
|
|
|
And I sleep for 0.25 seconds |
|
|
|
|
When I click on the element with class "add_new" within "#impediments" |
|
|
|
|
And I fill in "Bad Company" for "subject" |
|
|
|
|
And I fill in the ids of the tasks "Task 1" for "blocks_ids" |
|
|
|
@ -150,8 +148,6 @@ Feature: Scrum Master |
|
|
|
|
@javascript |
|
|
|
|
Scenario: Create an impediment blocking an work_package of another sprint |
|
|
|
|
Given I am on the taskboard for "Sprint 001" |
|
|
|
|
# Give the page time to initialize |
|
|
|
|
And I sleep for 0.25 seconds |
|
|
|
|
When I click on the element with class "add_new" within "#impediments" |
|
|
|
|
And I fill in "Bad Company" for "subject" |
|
|
|
|
And I fill in the ids of the stories "Story C" for "blocks_ids" |
|
|
|
@ -164,8 +160,6 @@ Feature: Scrum Master |
|
|
|
|
@javascript |
|
|
|
|
Scenario: Create an impediment blocking a non existent work_package |
|
|
|
|
Given I am on the taskboard for "Sprint 001" |
|
|
|
|
# Give the page time to initialize |
|
|
|
|
And I sleep for 0.25 seconds |
|
|
|
|
When I click on the element with class "add_new" within "#impediments" |
|
|
|
|
And I fill in "Bad Company" for "subject" |
|
|
|
|
And I fill in "0" for "blocks_ids" |
|
|
|
@ -178,8 +172,6 @@ Feature: Scrum Master |
|
|
|
|
@javascript |
|
|
|
|
Scenario: Create an impediment without specifying what it blocks |
|
|
|
|
Given I am on the taskboard for "Sprint 001" |
|
|
|
|
# Give the page time to initialize |
|
|
|
|
And I sleep for 0.25 seconds |
|
|
|
|
When I click on the element with class "add_new" within "#impediments" |
|
|
|
|
And I fill in "Bad Company" for "subject" |
|
|
|
|
And I fill in "" for "blocks_ids" |
|
|
|
@ -192,8 +184,6 @@ Feature: Scrum Master |
|
|
|
|
@javascript |
|
|
|
|
Scenario: Update an impediment |
|
|
|
|
Given I am on the taskboard for "Sprint 001" |
|
|
|
|
# Give the page time to initialize |
|
|
|
|
And I sleep for 0.25 seconds |
|
|
|
|
When I click on the impediment called "Impediment 1" |
|
|
|
|
And I fill in "Bad Company" for "subject" |
|
|
|
|
And I fill in the ids of the tasks "Task 1" for "blocks_ids" |
|
|
|
@ -204,8 +194,6 @@ Feature: Scrum Master |
|
|
|
|
@javascript |
|
|
|
|
Scenario: Update an impediment to block an work_package of another sprint |
|
|
|
|
Given I am on the taskboard for "Sprint 001" |
|
|
|
|
# Give the page time to initialize |
|
|
|
|
And I sleep for 0.25 seconds |
|
|
|
|
When I click on the impediment called "Impediment 1" |
|
|
|
|
And I fill in "Bad Company" for "subject" |
|
|
|
|
And I fill in the ids of the stories "Story C" for "blocks_ids" |
|
|
|
@ -217,8 +205,6 @@ Feature: Scrum Master |
|
|
|
|
@javascript |
|
|
|
|
Scenario: Update an impediment to block a non existent work_package |
|
|
|
|
Given I am on the taskboard for "Sprint 001" |
|
|
|
|
# Give the page time to initialize |
|
|
|
|
And I sleep for 0.25 seconds |
|
|
|
|
When I click on the impediment called "Impediment 1" |
|
|
|
|
And I fill in "Bad Company" for "subject" |
|
|
|
|
And I fill in "0" for "blocks_ids" |
|
|
|
@ -230,8 +216,6 @@ Feature: Scrum Master |
|
|
|
|
@javascript |
|
|
|
|
Scenario: Update an impediment to not block anything |
|
|
|
|
Given I am on the taskboard for "Sprint 001" |
|
|
|
|
# Give the page time to initialize |
|
|
|
|
And I sleep for 0.25 seconds |
|
|
|
|
When I click on the impediment called "Impediment 1" |
|
|
|
|
And I fill in "Bad Company" for "subject" |
|
|
|
|
And I fill in "" for "blocks_ids" |
|
|
|
|