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