debian-mirror-gitlab/spec/models/concerns/runners_token_prefixable_spec.rb

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

14 lines
280 B
Ruby
Raw Normal View History

2022-04-01 21:47:47 +05:30
# frozen_string_literal: true
require 'spec_helper'
RSpec.describe RunnersTokenPrefixable do
2022-05-07 20:08:51 +05:30
describe 'runners token prefix' do
subject { described_class::RUNNERS_TOKEN_PREFIX }
2022-04-01 21:47:47 +05:30
2022-05-07 20:08:51 +05:30
it 'has the correct value' do
expect(subject).to eq('GR1348941')
2022-04-01 21:47:47 +05:30
end
end
end