Welcome to mirror list, hosted at ThFree Co, Russian Federation.

artifacts_controller_spec.rb « harbor « groups « requests « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7ec792d081df43b2f19761647bb38235d28106be (plain)
1
2
3
4
5
6
7
8
9
10
# frozen_string_literal: true

require 'spec_helper'

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