class HaveInstanceMethodMatcher < MethodMatcher
  def matches?(mod)
    @mod = mod
    mod.instance_methods(@include_super).include? @method
  end