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

61 lines
1.3 KiB
Ruby
Raw Normal View History

2016-09-13 17:45:13 +05:30
require 'spec_helper'
2017-08-17 22:00:37 +05:30
describe Gitlab::Ci::Config::Entry::Attributable do
2018-03-17 18:26:18 +05:30
let(:node) do
Class.new do
include Gitlab::Ci::Config::Entry::Attributable
end
end
2016-09-13 17:45:13 +05:30
let(:instance) { node.new }
before do
node.class_eval do
attributes :name, :test
end
end
2018-03-17 18:26:18 +05:30
context 'when config is a hash' do
2016-09-13 17:45:13 +05:30
before do
allow(instance)
.to receive(:config)
.and_return({ name: 'some name', test: 'some test' })
end
it 'returns the value of config' do
expect(instance.name).to eq 'some name'
expect(instance.test).to eq 'some test'
end
it 'returns no method error for unknown attributes' do
expect { instance.unknown }.to raise_error(NoMethodError)
end
end
2018-03-17 18:26:18 +05:30
context 'when config is not a hash' do
2016-09-13 17:45:13 +05:30
before do
allow(instance)
.to receive(:config)
.and_return('some test')
end
it 'returns nil' do
expect(instance.test).to be_nil
end
end
2018-03-17 18:26:18 +05:30
context 'when method is already defined in a superclass' do
it 'raises an error' do
expectation = expect do
Class.new(String) do
include Gitlab::Ci::Config::Entry::Attributable
attributes :length
end
end
expectation.to raise_error(ArgumentError, 'Method already defined!')
end
end
2016-09-13 17:45:13 +05:30
end