BigW Consortium Gitlab

unspecified_spec.rb 705 Bytes
Newer Older
1 2
require 'spec_helper'

3
describe Gitlab::Ci::Config::Entry::Unspecified 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 29 30 31 32
  let(:unspecified) { described_class.new(entry) }
  let(:entry) { spy('Entry') }

  describe '#valid?' do
    it 'delegates method to entry' do
      expect(unspecified.valid?).to eq entry
    end
  end

  describe '#errors' do
    it 'delegates method to entry' do
      expect(unspecified.errors).to eq entry
    end
  end

  describe '#value' do
    it 'delegates method to entry' do
      expect(unspecified.value).to eq entry
    end
  end

  describe '#specified?' do
    it 'is always false' do
      allow(entry).to receive(:specified?).and_return(true)

      expect(unspecified.specified?).to be false
    end
  end
end