Welcome to mirror list, hosted at ThFree Co, Russian Federation.

publish_spec.rb « entry « config « ci « gitlab « lib « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 53ad868a05e9f7ebf10f8c4a1c4aea85d609d662 (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
37
38
39
40
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Gitlab::Ci::Config::Entry::Publish, feature_category: :pages do
  let(:publish) { described_class.new(config) }

  describe 'validations' do
    context 'when publish config value is correct' do
      let(:config) { 'dist/static' }

      describe '#config' do
        it 'returns the publish directory' do
          expect(publish.config).to eq config
        end
      end

      describe '#valid?' do
        it 'is valid' do
          expect(publish).to be_valid
        end
      end
    end

    context 'when the value has a wrong type' do
      let(:config) { { test: true } }

      it 'reports an error' do
        expect(publish.errors)
          .to include 'publish config should be a string'
      end
    end
  end

  describe '.default' do
    it 'returns the default value' do
      expect(described_class.default).to eq 'public'
    end
  end
end