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
|