Welcome to mirror list, hosted at ThFree Co, Russian Federation.

snippets.feature « project « features - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 50bc4c93df33e83591a88a16b8023faf18557102 (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
32
33
34
35
Feature: Project Snippets
  Background:
    Given I sign in as a user
    And I own project "Shop"
    And project "Shop" have "Snippet one" snippet
    And project "Shop" have no "Snippet two" snippet
    And I visit project "Shop" snippets page

  Scenario: I should see snippets
    Given I visit project "Shop" snippets page
    Then I should see "Snippet one" in snippets
    And I should not see "Snippet two" in snippets

  @javascript
  Scenario: I create new project snippet
    Given I click link "New snippet"
    And I submit new snippet "Snippet three"
    Then I should see snippet "Snippet three"

  @javascript
  Scenario: I comment on a snippet "Snippet one"
    Given I visit snippet page "Snippet one"
    And I leave a comment like "Good snippet!"
    Then I should see comment "Good snippet!"

  Scenario: I update "Snippet one"
    Given I visit snippet page "Snippet one"
    And I click link "Edit"
    And I submit new title "Snippet new title"
    Then I should see "Snippet new title"

  Scenario: I destroy "Snippet one"
    Given I visit snippet page "Snippet one"
    And I click link "Delete"
    Then I should not see "Snippet one" in snippets