class RSpec::Expectations::ValueExpectationTarget

def supports_value_expectations?(matcher)

Experimental RBS support (using type sampling data from the type_fusion project).

def supports_value_expectations?: ((RSpec::Matchers::BuiltIn::BeTruthy | RSpec::Matchers::BuiltIn::Include | RSpec::Matchers::BuiltIn::All) matcher) -> true

This signature was generated using 7 samples from 1 application.

def supports_value_expectations?(matcher)
  !matcher.respond_to?(:supports_value_expectations?) || matcher.supports_value_expectations?
end