Welcome to mirror list, hosted at ThFree Co, Russian Federation.

extended_spec.rb « status « ci « gitlab « lib « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e81c7b0f6be74d9ac839152e8b96779a7c34434a (plain)
1
2
3
4
5
6
7
8
9
10
# frozen_string_literal: true

require 'fast_spec_helper'

RSpec.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