method

method_missing

method_missing(sym, *args, &block)
public

No documentation available.

# File lib/spec/matchers/method_missing.rb, line 3
    def method_missing(sym, *args, &block) # :nodoc:
      return Matchers::Be.new(sym, *args) if sym.starts_with?("be_")
      return has(sym, *args) if sym.starts_with?("have_")
      super
    end