Welcome to mirror list, hosted at ThFree Co, Russian Federation.

undefined_spec.rb « node « config « ci « gitlab « lib « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2d43e1c1a9d6477f421d9710b0f666efacdba62d (plain)
1
2
3
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
require 'spec_helper'

describe Gitlab::Ci::Config::Node::Undefined do
  let(:undefined) { described_class.new(entry) }
  let(:entry) { spy('Entry') }

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

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

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

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

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