class Minitest::Keyword::MissingRequiredArgumentError

Raised if a parameter is required but none was provided as either a regular argument or a keyword argument

Public Class Methods

new(method_name, argument_name) click to toggle source
Calls superclass method
# File lib/minitest/keyword.rb, line 35
def initialize(method_name, argument_name)
  super("You must specify a value for the #{argument_name} argument " \
        "for the #{method_name} assertion")
end