2020-09-02 05:10:23 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
RSpec.describe ContainerRegistryHelper do
|
2022-05-02 17:09:12 -04:00
|
|
|
describe '#container_repository_gid_prefix' do
|
|
|
|
subject { helper.container_repository_gid_prefix }
|
2020-09-02 05:10:23 -04:00
|
|
|
|
2022-05-02 17:09:12 -04:00
|
|
|
it { is_expected.to eq('gid://gitlab/ContainerRepository/') }
|
2020-09-02 05:10:23 -04:00
|
|
|
end
|
|
|
|
end
|