summaryrefslogtreecommitdiff
path: root/spec/support/shared_examples/requests/api/debian_distributions_shared_examples.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/support/shared_examples/requests/api/debian_distributions_shared_examples.rb')
-rw-r--r--spec/support/shared_examples/requests/api/debian_distributions_shared_examples.rb6
1 files changed, 0 insertions, 6 deletions
diff --git a/spec/support/shared_examples/requests/api/debian_distributions_shared_examples.rb b/spec/support/shared_examples/requests/api/debian_distributions_shared_examples.rb
index f13ac05591c..5cd63c33936 100644
--- a/spec/support/shared_examples/requests/api/debian_distributions_shared_examples.rb
+++ b/spec/support/shared_examples/requests/api/debian_distributions_shared_examples.rb
@@ -3,8 +3,6 @@
RSpec.shared_examples 'Debian distributions GET request' do |status, body = nil|
and_body = body.nil? ? '' : ' and expected body'
- it_behaves_like 'Debian API FIPS mode'
-
it "returns #{status}#{and_body}" do
subject
@@ -19,8 +17,6 @@ end
RSpec.shared_examples 'Debian distributions PUT request' do |status, body|
and_body = body.nil? ? '' : ' and expected body'
- it_behaves_like 'Debian API FIPS mode'
-
if status == :success
it 'updates distribution', :aggregate_failures do
expect(::Packages::Debian::UpdateDistributionService).to receive(:new).with(distribution, api_params.except(:codename)).and_call_original
@@ -53,8 +49,6 @@ end
RSpec.shared_examples 'Debian distributions DELETE request' do |status, body|
and_body = body.nil? ? '' : ' and expected body'
- it_behaves_like 'Debian API FIPS mode'
-
if status == :success
it 'updates distribution', :aggregate_failures do
expect { subject }