diff options
author | Vitaliy @blackst0ne Klachkov <blackst0ne.ru@gmail.com> | 2017-09-17 17:12:03 +1100 |
---|---|---|
committer | Vitaliy @blackst0ne Klachkov <blackst0ne.ru@gmail.com> | 2017-09-17 17:12:03 +1100 |
commit | e6d5a6a370940d16891bb7e84e7b19bfab164c50 (patch) | |
tree | f7ec2950609e11c2b6e206716620f409d15df150 /features/project | |
parent | 64664b645e2248e47da2a7d47e67b2e2c72f7954 (diff) | |
download | gitlab-ce-e6d5a6a370940d16891bb7e84e7b19bfab164c50.tar.gz |
Replace the 'project/archived.feature' spinach test with an rspec analog
Diffstat (limited to 'features/project')
-rw-r--r-- | features/project/archived.feature | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/features/project/archived.feature b/features/project/archived.feature deleted file mode 100644 index ad466f4f307..00000000000 --- a/features/project/archived.feature +++ /dev/null @@ -1,30 +0,0 @@ -Feature: Project Archived - Background: - Given I sign in as a user - And I own project "Shop" - And I own project "Forum" - - Scenario: I should not see archived on project page of not-archive project - And project "Forum" is archived - And I visit project "Shop" page - Then I should not see "Archived" - - Scenario: I should see archived on project page of archive project - And project "Forum" is archived - And I visit project "Forum" page - Then I should see "Archived" - - Scenario: I archive project - When project "Shop" has push event - And I visit project "Shop" page - And I visit edit project "Shop" page - And I set project archived - Then I should see "Archived" - - Scenario: I unarchive project - When project "Shop" has push event - And project "Shop" is archived - And I visit project "Shop" page - And I visit edit project "Shop" page - And I set project unarchived - Then I should not see "Archived" |