module T::CompatibilityPatches::RSpecCompatibility::RecorderExtensions

def observe!(method_name)

def observe!(method_name)
  if @klass.method_defined?(method_name.to_sym)
    method = @klass.instance_method(method_name.to_sym)
    T::Private::Methods.maybe_run_sig_block_for_method(method)
  end
  super(method_name)
end