debian-mirror-gitlab/spec/lib/gitlab/config/entry/boolean_spec.rb
2019-10-12 21:52:04 +05:30

36 lines
778 B
Ruby

# frozen_string_literal: true
require 'spec_helper'
describe Gitlab::Config::Entry::Boolean do
let(:entry) { described_class.new(config) }
describe 'validations' do
context 'when entry config value is valid' do
let(:config) { false }
describe '#value' do
it 'returns key value' do
expect(entry.value).to eq false
end
end
describe '#valid?' do
it 'is valid' do
expect(entry).to be_valid
end
end
end
context 'when entry value is not valid' do
let(:config) { ['incorrect'] }
describe '#errors' do
it 'saves errors' do
expect(entry.errors)
.to include 'boolean config should be a boolean value'
end
end
end
end
end