debian-mirror-gitlab/spec/models/concerns/runners_token_prefixable_spec.rb
2022-05-07 20:08:51 +05:30

14 lines
280 B
Ruby

# frozen_string_literal: true
require 'spec_helper'
RSpec.describe RunnersTokenPrefixable do
describe 'runners token prefix' do
subject { described_class::RUNNERS_TOKEN_PREFIX }
it 'has the correct value' do
expect(subject).to eq('GR1348941')
end
end
end