summaryrefslogtreecommitdiff
path: root/spec/models/concerns/runners_token_prefixable_spec.rb
blob: 29e7b8cf4f47a882145addd2752b04249a75f66a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# 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