summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/ci/config/node/key_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/lib/gitlab/ci/config/node/key_spec.rb')
-rw-r--r--spec/lib/gitlab/ci/config/node/key_spec.rb34
1 files changed, 0 insertions, 34 deletions
diff --git a/spec/lib/gitlab/ci/config/node/key_spec.rb b/spec/lib/gitlab/ci/config/node/key_spec.rb
deleted file mode 100644
index 8cda43173fe..00000000000
--- a/spec/lib/gitlab/ci/config/node/key_spec.rb
+++ /dev/null
@@ -1,34 +0,0 @@
-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