2019-07-25 01:21:37 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-12-02 08:37:29 -05:00
|
|
|
require 'spec_helper'
|
|
|
|
|
2020-06-24 14:09:03 -04:00
|
|
|
RSpec.describe Gitlab::Ci::Status::Extended do
|
2016-12-02 08:37:29 -05:00
|
|
|
it 'requires subclass to implement matcher' do
|
2017-05-05 09:21:06 -04:00
|
|
|
expect { described_class.matches?(double, double) }
|
2016-12-02 08:37:29 -05:00
|
|
|
.to raise_error(NotImplementedError)
|
|
|
|
end
|
|
|
|
end
|