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

require 'fast_spec_helper'
require 'com_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 'raises an error when nothing is drawn' do
    expect { subject.draw(:non_existing) }
        .to raise_error(described_class::RoutesNotFound)
  end
end