summaryrefslogtreecommitdiff
path: root/spec/lib/ci
diff options
context:
space:
mode:
authorLeandro Camargo <leandroico@gmail.com>2016-11-21 02:38:03 -0200
committerLeandro Camargo <leandroico@gmail.com>2017-01-25 01:07:44 -0200
commit0713a7c3a9eb1bcfdf6adde0c3365549c19a3ee1 (patch)
treedc6ed374e79782124c4c6cd8ba745883e3fbb2e5 /spec/lib/ci
parent94eb2f47c732dc9485aba4ebe52238e882a43473 (diff)
downloadgitlab-ce-0713a7c3a9eb1bcfdf6adde0c3365549c19a3ee1.tar.gz
Add specs to cover the implemented feature and fix a small bug
Diffstat (limited to 'spec/lib/ci')
-rw-r--r--spec/lib/ci/gitlab_ci_yaml_processor_spec.rb31
1 files changed, 31 insertions, 0 deletions
diff --git a/spec/lib/ci/gitlab_ci_yaml_processor_spec.rb b/spec/lib/ci/gitlab_ci_yaml_processor_spec.rb
index f824e2e1efe..eb2d9c6e0e3 100644
--- a/spec/lib/ci/gitlab_ci_yaml_processor_spec.rb
+++ b/spec/lib/ci/gitlab_ci_yaml_processor_spec.rb
@@ -4,6 +4,37 @@ module Ci
describe GitlabCiYamlProcessor, lib: true do
let(:path) { 'path' }
+ describe '#build_attributes' do
+ context 'Coverage entry' do
+ subject { described_class.new(config, path).build_attributes(:rspec) }
+
+ let(:config_base) { { rspec: { script: "rspec" } } }
+ 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
+
+ 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
+
+ it { is_expected.to include(coverage_regex: 'Code coverage: \d+\.\d+') }
+ end
+ end
+ end
+ end
+
describe "#builds_for_ref" do
let(:type) { 'test' }