9 lines
222 B
Ruby
9 lines
222 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
RSpec::Matchers.define :be_request_urgency do |expected|
|
||
|
match do |actual|
|
||
|
actual.is_a?(::Gitlab::EndpointAttributes::Config::RequestUrgency) &&
|
||
|
actual.name == expected
|
||
|
end
|
||
|
end
|