BigW Consortium Gitlab

key_spec.rb 754 Bytes
Newer Older
1 2
require 'spec_helper'

3
describe Gitlab::Ci::Config::Entry::Key do
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
  let(:entry) { described_class.new(config) }

  describe 'validations' do
    context 'when entry config value is correct' do
      let(:config) { 'test' }

      describe '#value' do
        it 'returns key value' do
          expect(entry.value).to eq 'test'
        end
      end

      describe '#valid?' do
        it 'is valid' do
          expect(entry).to be_valid
        end
      end
    end

    context 'when entry value is not correct' do
      let(:config) { [ 'incorrect' ] }

      describe '#errors' do
        it 'saves errors' do
          expect(entry.errors)
29
            .to include 'key config should be a string or symbol'
30 31 32 33 34
        end
      end
    end
  end
end