summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/ci/status/extended_spec.rb
blob: 8accfc4a2f9f858224e2c9120511865c16088672 (plain)
1
2
3
4
5
6
7
8
9
10
# frozen_string_literal: true

require 'spec_helper'

describe Gitlab::Ci::Status::Extended do
  it 'requires subclass to implement matcher' do
    expect { described_class.matches?(double, double) }
      .to raise_error(NotImplementedError)
  end
end