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

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

require 'spec_helper'

RSpec.describe ContainerRegistryHelper do
  describe '#container_repository_gid_prefix' do
    subject { helper.container_repository_gid_prefix }

    it { is_expected.to eq('gid://gitlab/ContainerRepository/') }
  end
end