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 /spec/routing | |
parent | 83e59db55e9bd65a41af69eda893ef39e8fd7aed (diff) | |
download | gitlab-ce-6e5473f930c11be6719585b47c47d8552f6b41b5.tar.gz |
Remove show actions from Admin and Project DeployKeys
Diffstat (limited to 'spec/routing')
-rw-r--r-- | spec/routing/project_routing_spec.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/routing/project_routing_spec.rb b/spec/routing/project_routing_spec.rb index 3a0d9b88d75..0040718d9be 100644 --- a/spec/routing/project_routing_spec.rb +++ b/spec/routing/project_routing_spec.rb @@ -172,7 +172,7 @@ end # DELETE /:project_id/deploy_keys/:id(.:format) deploy_keys#destroy describe Projects::DeployKeysController, 'routing' do it_behaves_like 'RESTful project resources' do - let(:actions) { [:index, :show, :new, :create] } + let(:actions) { [:index, :new, :create] } let(:controller) { 'deploy_keys' } end end |