diff options
Diffstat (limited to 'spec/finders/artifacts_finder_spec.rb')
-rw-r--r-- | spec/finders/artifacts_finder_spec.rb | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/spec/finders/artifacts_finder_spec.rb b/spec/finders/artifacts_finder_spec.rb deleted file mode 100644 index b956e2c9515..00000000000 --- a/spec/finders/artifacts_finder_spec.rb +++ /dev/null @@ -1,31 +0,0 @@ -# frozen_string_literal: true - -require 'spec_helper' - -describe ArtifactsFinder do - let(:project) { create(:project) } - - describe '#execute' do - before do - create(:ci_build, :artifacts, project: project) - end - - subject { described_class.new(project, params).execute } - - context 'with empty params' do - let(:params) { {} } - - it 'returns all artifacts belonging to the project' do - expect(subject).to contain_exactly(*project.job_artifacts) - end - end - - context 'with sort param' do - let(:params) { { sort: 'size_desc' } } - - it 'sorts the artifacts' do - expect(subject).to eq(project.job_artifacts.order_by('size_desc')) - end - end - end -end |