debian-mirror-gitlab/spec/lib/gitlab/ci/config/entry/key_spec.rb

41 lines
878 B
Ruby
Raw Normal View History

2016-08-24 12:49:21 +05:30
require 'spec_helper'
2017-08-17 22:00:37 +05:30
describe Gitlab::Ci::Config::Entry::Key do
2016-08-24 12:49:21 +05:30
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
2017-08-17 22:00:37 +05:30
let(:config) { ['incorrect'] }
2016-08-24 12:49:21 +05:30
describe '#errors' do
it 'saves errors' do
expect(entry.errors)
.to include 'key config should be a string or symbol'
end
end
end
end
2017-08-17 22:00:37 +05:30
describe '.default' do
it 'returns default key' do
expect(described_class.default).to eq 'default'
end
end
2016-08-24 12:49:21 +05:30
end