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
path: root/spec
diff options
context:
space:
mode:
authorGrzegorz Bizon <grzesiek.bizon@gmail.com>2016-01-14 00:31:27 +0300
committerGrzegorz Bizon <grzesiek.bizon@gmail.com>2016-01-14 14:48:17 +0300
commitad2b0358e0facd5c65c4141ce54c2e55bab165e6 (patch)
tree30d9a8d84342145845fef72f747621ed79423332 /spec
parent6b0a43aff36f0bbb9050b3c04155a3ccd9c1a75b (diff)
Improve readability of artifacts `Metadata` related code
Diffstat (limited to 'spec')
-rw-r--r--spec/lib/gitlab/ci/build/artifacts/metadata_spec.rb16
1 files changed, 8 insertions, 8 deletions
diff --git a/spec/lib/gitlab/ci/build/artifacts/metadata_spec.rb b/spec/lib/gitlab/ci/build/artifacts/metadata_spec.rb
index 42fbe40c890..8560493f5b5 100644
--- a/spec/lib/gitlab/ci/build/artifacts/metadata_spec.rb
+++ b/spec/lib/gitlab/ci/build/artifacts/metadata_spec.rb
@@ -10,8 +10,8 @@ describe Gitlab::Ci::Build::Artifacts::Metadata do
end
context 'metadata file exists' do
- describe '#match! empty string' do
- subject { metadata('').match! }
+ describe '#find_entries! empty string' do
+ subject { metadata('').find_entries! }
it 'matches correct paths' do
expect(subject.first).to contain_exactly 'ci_artifacts.txt',
@@ -29,8 +29,8 @@ describe Gitlab::Ci::Build::Artifacts::Metadata do
end
end
- describe '#match! other_artifacts_0.1.2/' do
- subject { metadata('other_artifacts_0.1.2/').match! }
+ describe '#find_entries! other_artifacts_0.1.2/' do
+ subject { metadata('other_artifacts_0.1.2/').find_entries! }
it 'matches correct paths' do
expect(subject.first).
@@ -40,8 +40,8 @@ describe Gitlab::Ci::Build::Artifacts::Metadata do
end
end
- describe '#match! other_artifacts_0.1.2/another-subdirectory/' do
- subject { metadata('other_artifacts_0.1.2/another-subdirectory/').match! }
+ describe '#find_entries! other_artifacts_0.1.2/another-subdirectory/' do
+ subject { metadata('other_artifacts_0.1.2/another-subdirectory/').find_entries! }
it 'matches correct paths' do
expect(subject.first).
@@ -75,9 +75,9 @@ describe Gitlab::Ci::Build::Artifacts::Metadata do
context 'metadata file does not exist' do
let(:metadata_file_path) { '' }
- describe '#match!' do
+ describe '#find_entries!' do
it 'raises error' do
- expect { metadata.match! }.to raise_error(Errno::ENOENT)
+ expect { metadata.find_entries! }.to raise_error(Errno::ENOENT)
end
end
end