summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/ci/config/entry/paths_spec.rb
blob: 221d5ae5863b7abb963cc54675fb2a06e989713a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# frozen_string_literal: true

require 'spec_helper'

describe Gitlab::Ci::Config::Entry::Paths do
  let(:entry) { described_class.new(config) }

  describe 'validations' do
    context 'when entry config value is valid' do
      let(:config) { ['some/file', 'some/path/'] }

      describe '#value' do
        it 'returns key value' do
          expect(entry.value).to eq config
        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) { [1] }

      describe '#errors' do
        it 'saves errors' do
          expect(entry.errors)
            .to include 'paths config should be an array of strings'
        end
      end
    end
  end
end