gitlab-org--gitlab-foss/spec/lib/gitlab/config/entry/undefined_spec.rb
Kamil Trzciński 64b1044e7a ci/config: generalize Config validation into Gitlab::Config:: module
This decouples Ci::Config to provide a common interface for handling
user configuration files.
2018-11-29 16:09:18 +01:00

41 lines
743 B
Ruby

require 'spec_helper'
describe Gitlab::Config::Entry::Undefined do
let(:entry) { described_class.new }
describe '#leaf?' do
it 'is leaf node' do
expect(entry).to be_leaf
end
end
describe '#valid?' do
it 'is always valid' do
expect(entry).to be_valid
end
end
describe '#errors' do
it 'is does not contain errors' do
expect(entry.errors).to be_empty
end
end
describe '#value' do
it 'returns nil' do
expect(entry.value).to eq nil
end
end
describe '#relevant?' do
it 'is not relevant' do
expect(entry.relevant?).to eq false
end
end
describe '#specified?' do
it 'is not defined' do
expect(entry.specified?).to eq false
end
end
end