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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'spec/helpers/container_registry_helper_spec.rb')
-rw-r--r--spec/helpers/container_registry_helper_spec.rb16
1 files changed, 4 insertions, 12 deletions
diff --git a/spec/helpers/container_registry_helper_spec.rb b/spec/helpers/container_registry_helper_spec.rb
index 49e56113dd8..57641d4b5df 100644
--- a/spec/helpers/container_registry_helper_spec.rb
+++ b/spec/helpers/container_registry_helper_spec.rb
@@ -3,25 +3,17 @@
require 'spec_helper'
RSpec.describe ContainerRegistryHelper do
- using RSpec::Parameterized::TableSyntax
-
describe '#container_registry_expiration_policies_throttling?' do
subject { helper.container_registry_expiration_policies_throttling? }
- where(:feature_flag_enabled, :client_support, :expected_result) do
- true | true | true
- true | false | false
- false | true | false
- false | false | false
- end
+ it { is_expected.to eq(true) }
- with_them do
+ context 'with container_registry_expiration_policies_throttling disabled' do
before do
- stub_feature_flags(container_registry_expiration_policies_throttling: feature_flag_enabled)
- allow(ContainerRegistry::Client).to receive(:supports_tag_delete?).and_return(client_support)
+ stub_feature_flags(container_registry_expiration_policies_throttling: false)
end
- it { is_expected.to eq(expected_result) }
+ it { is_expected.to eq(false) }
end
end
end