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/tooling/danger/feature_flag_spec.rb')
-rw-r--r--spec/tooling/danger/feature_flag_spec.rb18
1 files changed, 17 insertions, 1 deletions
diff --git a/spec/tooling/danger/feature_flag_spec.rb b/spec/tooling/danger/feature_flag_spec.rb
index 5e495cd43c6..74e19d8f535 100644
--- a/spec/tooling/danger/feature_flag_spec.rb
+++ b/spec/tooling/danger/feature_flag_spec.rb
@@ -87,7 +87,11 @@ RSpec.describe Tooling::Danger::FeatureFlag do
let(:feature_flag_path) { 'config/feature_flags/development/entry.yml' }
let(:group) { 'group::source code' }
let(:raw_yaml) do
- YAML.dump('group' => group)
+ YAML.dump(
+ 'group' => group,
+ 'default_enabled' => true,
+ 'rollout_issue_url' => 'https://gitlab.com/gitlab-org/gitlab/-/issues/1'
+ )
end
subject(:found) { described_class.new(feature_flag_path) }
@@ -109,6 +113,18 @@ RSpec.describe Tooling::Danger::FeatureFlag do
end
end
+ describe '#default_enabled' do
+ it 'returns the default_enabled found in the YAML' do
+ expect(found.default_enabled).to eq(true)
+ end
+ end
+
+ describe '#rollout_issue_url' do
+ it 'returns the rollout_issue_url found in the YAML' do
+ expect(found.rollout_issue_url).to eq('https://gitlab.com/gitlab-org/gitlab/-/issues/1')
+ end
+ end
+
describe '#group_match_mr_label?' do
subject(:result) { found.group_match_mr_label?(mr_group_label) }