diff options
| author | Rubén Dávila <rdavila84@gmail.com> | 2016-01-21 12:54:10 -0500 |
|---|---|---|
| committer | Rubén Dávila <rdavila84@gmail.com> | 2016-01-21 12:54:10 -0500 |
| commit | 0f79620ccb049dc8146ab3c639f993122329eb83 (patch) | |
| tree | 34c3e63a5624c1aaee605be20fc410bba16422fb /features/project | |
| parent | 4d345bc4003022ca22b5e7f42069c5a6bde41b6c (diff) | |
| download | gitlab-ce-0f79620ccb049dc8146ab3c639f993122329eb83.tar.gz | |
Little refactor plus some specs.
Diffstat (limited to 'features/project')
| -rw-r--r-- | features/project/issues/issues.feature | 8 | ||||
| -rw-r--r-- | features/project/merge_requests.feature | 8 |
2 files changed, 16 insertions, 0 deletions
diff --git a/features/project/issues/issues.feature b/features/project/issues/issues.feature index 1502b0952cd..c1ae10f89c9 100644 --- a/features/project/issues/issues.feature +++ b/features/project/issues/issues.feature @@ -60,6 +60,14 @@ Feature: Project Issues Then I should see "Release 0.4" at the top @javascript + Scenario: Visiting Issues after being sorted the list + Given I visit project "Shop" issues page + And I sort the list by "Oldest updated" + And I visit my project's home page + And I visit project "Shop" issues page + Then The list should be sorted by "Oldest updated" + + @javascript Scenario: I search issue Given I fill in issue search with "Re" Then I should see "Release 0.4" in issues diff --git a/features/project/merge_requests.feature b/features/project/merge_requests.feature index f1629a26f10..55c17ad0c15 100644 --- a/features/project/merge_requests.feature +++ b/features/project/merge_requests.feature @@ -85,6 +85,14 @@ Feature: Project Merge Requests Then I should see "Bug NS-04" at the top @javascript + Scenario: Visiting Merge Requests after being sorted the list + Given I visit project "Shop" merge requests page + And I sort the list by "Oldest updated" + And I visit my project's home page + And I visit project "Shop" merge requests page + Then The list should be sorted by "Oldest updated" + + @javascript Scenario: Visiting Merge Requests after commenting on diffs Given project "Shop" have "Bug NS-05" open merge request with diffs inside And I visit merge request page "Bug NS-05" |
