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/ci/yaml_processor_spec.rb')
-rw-r--r--spec/lib/gitlab/ci/yaml_processor_spec.rb15
1 files changed, 0 insertions, 15 deletions
diff --git a/spec/lib/gitlab/ci/yaml_processor_spec.rb b/spec/lib/gitlab/ci/yaml_processor_spec.rb
index f61b28b06c8..8f9c5c74260 100644
--- a/spec/lib/gitlab/ci/yaml_processor_spec.rb
+++ b/spec/lib/gitlab/ci/yaml_processor_spec.rb
@@ -241,21 +241,6 @@ module Gitlab
end
end
end
-
- describe 'resource group' do
- context 'when resource group is defined' do
- let(:config) do
- YAML.dump(rspec: {
- script: 'test',
- resource_group: 'iOS'
- })
- end
-
- it 'has the attributes' do
- expect(subject[:resource_group_key]).to eq 'iOS'
- end
- end
- end
end
describe '#stages_attributes' do