debian-mirror-gitlab/spec/lib/gitlab/ci/status/extended_spec.rb
2019-10-12 21:52:04 +05:30

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