summaryrefslogtreecommitdiff
path: root/spec/lib
diff options
context:
space:
mode:
authorGrzegorz Bizon <grzesiek.bizon@gmail.com>2016-06-24 08:58:09 +0200
committerGrzegorz Bizon <grzesiek.bizon@gmail.com>2016-06-24 08:58:09 +0200
commit04ece6664a04e7c352582100bdd6e8d78c3ea7cc (patch)
tree5ec3a83d0ae86c7162f569561c28f72c48caa7fe /spec/lib
parent823970b570463bb011fbdc1117a1450310763da0 (diff)
downloadgitlab-ce-04ece6664a04e7c352582100bdd6e8d78c3ea7cc.tar.gz
Add ci config class that represents a key value
Diffstat (limited to 'spec/lib')
-rw-r--r--spec/lib/gitlab/ci/config/node/key_spec.rb34
1 files changed, 34 insertions, 0 deletions
diff --git a/spec/lib/gitlab/ci/config/node/key_spec.rb b/spec/lib/gitlab/ci/config/node/key_spec.rb
new file mode 100644
index 00000000000..23e7fc46201
--- /dev/null
+++ b/spec/lib/gitlab/ci/config/node/key_spec.rb
@@ -0,0 +1,34 @@
+require 'spec_helper'
+
+describe Gitlab::Ci::Config::Node::Key do
+ 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
+ let(:config) { [ 'incorrect' ] }
+
+ describe '#errors' do
+ it 'saves errors' do
+ expect(entry.errors)
+ .to include 'Key config should be a string or symbol'
+ end
+ end
+ end
+ end
+end