summaryrefslogtreecommitdiff
path: root/features/project/merge_requests/revert.feature
blob: ec6666f227fcde7970e7363b12faa1fb71016459 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
@project_merge_requests
Feature: Revert Merge Requests
  Background:
    Given There is an open Merge Request
      And I am signed in as a developer of the project
      And I am on the Merge Request detail page
      And I click on Accept Merge Request
      And I am on the Merge Request detail page

  @javascript
  Scenario: I revert a merge request
    Given I click on the revert button
    And I revert the changes directly
    Then I should see the revert merge request notice

  @javascript
  Scenario: I revert a merge request that was previously reverted
    Given I click on the revert button
    And I revert the changes directly
    And I am on the Merge Request detail page
    And I click on the revert button
    And I revert the changes directly
    Then I should see a revert error

  @javascript
  Scenario: I revert a merge request in a new merge request
    Given I click on the revert button
    And I am on the Merge Request detail page
    And I click on the revert button
    And I revert the changes in a new merge request
    Then I should see the new merge request notice