summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/ci/config/entry/except_policy_spec.rb
blob: d036bf2f4d162744b12ec9ea35d5771c6bda8122 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# frozen_string_literal: true

require 'spec_helper'

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

  it_behaves_like 'correct only except policy'

  describe '.default' do
    it 'does not have a default value' do
      expect(described_class.default).to be_nil
    end
  end
end