summaryrefslogtreecommitdiff
path: root/spec/lib/ci
diff options
context:
space:
mode:
Diffstat (limited to 'spec/lib/ci')
-rw-r--r--spec/lib/ci/gitlab_ci_yaml_processor_spec.rb17
1 files changed, 4 insertions, 13 deletions
diff --git a/spec/lib/ci/gitlab_ci_yaml_processor_spec.rb b/spec/lib/ci/gitlab_ci_yaml_processor_spec.rb
index eb2d9c6e0e3..ac706216d5a 100644
--- a/spec/lib/ci/gitlab_ci_yaml_processor_spec.rb
+++ b/spec/lib/ci/gitlab_ci_yaml_processor_spec.rb
@@ -9,26 +9,17 @@ module Ci
subject { described_class.new(config, path).build_attributes(:rspec) }
let(:config_base) { { rspec: { script: "rspec" } } }
- let(:config) { YAML.dump(config_base) }
+ let(:config) { YAML.dump(config_base) }
context 'when config has coverage set at the global scope' do
- before do
- config_base.update(
- coverage: { output_filter: '\(\d+\.\d+\) covered' }
- )
- end
+ before { config_base.update(coverage: '\(\d+\.\d+\) covered') }
- context 'and \'rspec\' job doesn\'t have coverage set' do
+ context "and 'rspec' job doesn't have coverage set" do
it { is_expected.to include(coverage_regex: '\(\d+\.\d+\) covered') }
end
context 'but \'rspec\' job also has coverage set' do
- before do
- config_base[:rspec].update(
- coverage: { output_filter: '/Code coverage: \d+\.\d+/' }
- )
- end
-
+ before { config_base[:rspec][:coverage] = '/Code coverage: \d+\.\d+/' }
it { is_expected.to include(coverage_regex: 'Code coverage: \d+\.\d+') }
end
end