f540ffcef6
Using the sed script from https://gitlab.com/gitlab-org/gitlab-ce/issues/59758
10 lines
253 B
Ruby
10 lines
253 B
Ruby
# 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
|