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

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

require 'spec_helper'

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