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