module PeppersGhost::Matchers

Public Instance Methods

method_missing(method, *args, &block) click to toggle source
Calls superclass method
# File lib/peppers-ghost/matchers/match_structure_of.rb, line 21
def method_missing(method, *args, &block)
  if defined?(@method)
    super
  else
    @method = method
  end
  self
end