debian-mirror-gitlab/spec/requests/groups/harbor/artifacts_controller_spec.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
381 B
Ruby
Raw Normal View History

2022-08-13 15:12:31 +05:30
# frozen_string_literal: true
require 'spec_helper'
2023-03-04 22:38:38 +05:30
RSpec.describe Groups::Harbor::ArtifactsController, feature_category: :build_artifacts do
2022-08-13 15:12:31 +05:30
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