summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/patch/draw_route_spec.rb
blob: 4009b903dc3f235f5c6df516db87d9906e79e8fd (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
# frozen_string_literal: true

require 'fast_spec_helper'

describe Gitlab::Patch::DrawRoute do
  subject do
    Class.new do
      include Gitlab::Patch::DrawRoute

      def route_path(route_name)
        File.expand_path("../../../../#{route_name}", __dir__)
      end
    end.new
  end

  before do
    allow(subject).to receive(:instance_eval)
  end

  it 'evaluates CE only route' do
    subject.draw(:help)

    expect(subject).to have_received(:instance_eval)
      .with(File.read(subject.route_path('config/routes/help.rb')))
      .once

    expect(subject).to have_received(:instance_eval)
      .once
  end
end