summaryrefslogtreecommitdiff
path: root/spec/requests/projects/harbor/artifacts_controller_spec.rb
blob: d0ed93acaf7071b3394e4d79e41f57200de99e90 (plain)
1
2
3
4
5
6
7
8
9
10
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Projects::Harbor::ArtifactsController, feature_category: :build_artifacts do
  it_behaves_like 'a harbor artifacts controller', anonymous_status_code: '302' do
    let_it_be(:container) { create(:project) }
    let_it_be(:harbor_integration) { create(:harbor_integration, project: container) }
  end
end