debian-mirror-gitlab/spec/helpers/container_registry_helper_spec.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
277 B
Ruby
Raw Normal View History

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