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/lib/gitlab/web_ide/config/entry/terminal_spec.rb')
-rw-r--r--spec/lib/gitlab/web_ide/config/entry/terminal_spec.rb23
1 files changed, 0 insertions, 23 deletions
diff --git a/spec/lib/gitlab/web_ide/config/entry/terminal_spec.rb b/spec/lib/gitlab/web_ide/config/entry/terminal_spec.rb
index 8d4629bf48b..7d96adf95e8 100644
--- a/spec/lib/gitlab/web_ide/config/entry/terminal_spec.rb
+++ b/spec/lib/gitlab/web_ide/config/entry/terminal_spec.rb
@@ -150,29 +150,6 @@ RSpec.describe Gitlab::WebIde::Config::Entry::Terminal do
}
)
end
-
- context 'when the FF ci_variables_refactoring_to_variable is disabled' do
- let(:entry_without_ff) { described_class.new(config, with_image_ports: true) }
-
- before do
- stub_feature_flags(ci_variables_refactoring_to_variable: false)
- entry_without_ff.compose!
- end
-
- it 'returns correct value' do
- expect(entry_without_ff.value)
- .to eq(
- tag_list: ['webide'],
- job_variables: [{ key: 'KEY', value: 'value', public: true }],
- options: {
- image: { name: "image:1.0" },
- services: [{ name: "mysql" }],
- before_script: %w[ls pwd],
- script: ['sleep 100']
- }
- )
- end
- end
end
end
end