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

projects.feature « admin « features - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f7cec04eb75e7db842077385584dbbb18a1bfb51 (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
@admin
Feature: Admin Projects
  Background:
    Given I sign in as an admin
    And there are projects in system

  Scenario: I should see non-archived projects in the list
    Given archived project "Archive"
    When I visit admin projects page
    Then I should see all non-archived projects
    And I should not see project "Archive"

  Scenario: I should see all projects in the list
    Given archived project "Archive"
    When I visit admin projects page
    And I check "Show archived projects"
    Then I should see all projects
    And I should see "archived" label

  Scenario: Projects show
    When I visit admin projects page
    And I click on first project
    Then I should see project details

  Scenario: Transfer project
    Given group 'Web'
    And I visit admin project page
    When I transfer project to group 'Web'
    Then I should see project transfered