10 lines
337 B
Ruby
10 lines
337 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'spec_helper'
|
|
|
|
RSpec.describe Projects::Harbor::ArtifactsController 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
|