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

discover.feature « snippets « features - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1a7e132ea25261f5e0dc5bc4a621412eab609dea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
@snippets
Feature: Snippets Discover
  Background:
    Given I sign in as a user
    And I have public "Personal snippet one" snippet
    And I have private "Personal snippet private" snippet
    And I have internal "Personal snippet internal" snippet

  Scenario: I should see snippets
    Given I visit snippets page
    Then I should see "Personal snippet one" in snippets
    And I should see "Personal snippet internal" in snippets
    And I should not see "Personal snippet private" in snippets