13 lines
232 B
Ruby
13 lines
232 B
Ruby
# typed: strict
|
|
module RSpec::Matchers
|
|
sig { params(expected: T.untyped).returns(T.untyped) }
|
|
def http_client_opts_with(expected)
|
|
end
|
|
end
|
|
|
|
class HttpClientMockHelpers
|
|
sig { returns(ColorLogger) }
|
|
def self.logger
|
|
end
|
|
end
|