Minitest has many methods defined as follows:
## # :method: must_equal # See MiniTest::Assertions#assert_equal ## # :method: must_include # See MiniTest::Assertions#assert_includes ## # :method: must_match # See MiniTest::Assertions#assert_match ## # :method: must_output # See MiniTest::Assertions#assert_output
They are defined in the Object module, so they are available for all objects. But why do not they appear in any documents? I checked the documents created by Yard on rdoc.info , and the ones that rdoc generated when entering gem rdoc minitest . They do not appear either. How should I refer to them if they do not appear anywhere? What to do :method: :?
source share