Method deprecated or moved
This method is deprecated or moved on the latest stable version.
The last existing version (v2_1_10) is shown here.
plugins()
public
Return all plugins’ run methods
(methods that start with “run_”).
# File lib/minitest/unit.rb, line 841
def self.plugins
@@plugins ||= (["run_tests"] +
public_instance_methods(false).
grep(/^run_/).map { |s| s.to_s }).uniq
end