2020-11-24 15:15:51 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
RSpec.describe ContainerRegistryHelper do
|
2022-07-16 23:28:13 +05:30
|
|
|
describe '#container_repository_gid_prefix' do
|
|
|
|
subject { helper.container_repository_gid_prefix }
|
2020-11-24 15:15:51 +05:30
|
|
|
|
2022-07-16 23:28:13 +05:30
|
|
|
it { is_expected.to eq('gid://gitlab/ContainerRepository/') }
|
2020-11-24 15:15:51 +05:30
|
|
|
end
|
|
|
|
end
|