diff options
| author | Robert Speicher <rspeicher@gmail.com> | 2015-06-03 17:27:23 -0400 |
|---|---|---|
| committer | Robert Speicher <rspeicher@gmail.com> | 2015-06-03 18:03:04 -0400 |
| commit | 6e5473f930c11be6719585b47c47d8552f6b41b5 (patch) | |
| tree | c758b4a13f902c36651ff68ed6a1e18d5cc597ac /features | |
| parent | 83e59db55e9bd65a41af69eda893ef39e8fd7aed (diff) | |
| download | gitlab-ce-6e5473f930c11be6719585b47c47d8552f6b41b5.tar.gz | |
Remove show actions from Admin and Project DeployKeys
Diffstat (limited to 'features')
| -rw-r--r-- | features/admin/deploy_keys.feature | 5 | ||||
| -rw-r--r-- | features/steps/admin/deploy_keys.rb | 11 |
2 files changed, 0 insertions, 16 deletions
diff --git a/features/admin/deploy_keys.feature b/features/admin/deploy_keys.feature index 9df47eb51fd..33439cd1e85 100644 --- a/features/admin/deploy_keys.feature +++ b/features/admin/deploy_keys.feature @@ -8,11 +8,6 @@ Feature: Admin Deploy Keys When I visit admin deploy keys page Then I should see all public deploy keys - Scenario: Deploy Keys show - When I visit admin deploy keys page - And I click on first deploy key - Then I should see deploy key details - Scenario: Deploy Keys new When I visit admin deploy keys page And I click 'New Deploy Key' diff --git a/features/steps/admin/deploy_keys.rb b/features/steps/admin/deploy_keys.rb index fb0b611762e..844837d177d 100644 --- a/features/steps/admin/deploy_keys.rb +++ b/features/steps/admin/deploy_keys.rb @@ -14,17 +14,6 @@ class Spinach::Features::AdminDeployKeys < Spinach::FeatureSteps end end - step 'I click on first deploy key' do - click_link DeployKey.are_public.first.title - end - - step 'I should see deploy key details' do - deploy_key = DeployKey.are_public.first - current_path.should == admin_deploy_key_path(deploy_key) - page.should have_content(deploy_key.title) - page.should have_content(deploy_key.key) - end - step 'I visit admin deploy key page' do visit admin_deploy_key_path(deploy_key) end |
