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

require 'fast_spec_helper'

RSpec.describe Gitlab::Ci::Config::Normalizer::Factory do
  describe '#create' do
    context 'when no strategy applies' do
      subject(:subject) { described_class.new(nil, nil).create } # rubocop:disable Rails/SaveBang

      it { is_expected.to be_empty }
    end
  end
end