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

applications.feature « admin « features - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2a00e1666c01239e7c44dc1bd40e2a0344124955 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
@admin
Feature: Admin Applications
  Background:
    Given I sign in as an admin
    And I visit applications page
    
  Scenario: I can manage application
    Then I click on new application button
    And I should see application form
    Then I fill application form out and submit
    And I see application
    Then I click edit
    And I see edit application form
    Then I change name of application and submit
    And I see that application was changed
    Then I visit applications page
    And I click to remove application
    Then I see that application is removed