Flowdock
method

match_or_compare

Importance_0
match_or_compare(actual) private

No documentation

This method has no description. You can help the RSpec community by adding new notes.

Hide source
# File lib/spec/matchers/be.rb, line 63
        def match_or_compare(actual)
          case @expected
          when TrueClass
            @actual
          else
            @actual.__send__(comparison_method, @expected)
          end
        end
Register or log in to add new notes.