Method: M::Runners::TestUnit#test_methods
- Defined in:
- lib/m/runners/test_unit.rb
#test_methods(suite_class) ⇒ Object
16 17 18 19 20 21 22 |
# File 'lib/m/runners/test_unit.rb', line 16 def test_methods suite_class if suite_class.respond_to? :test_methods suite_class.test_methods else suite_class.public_instance_methods(true).grep(/^test/).map(&:to_s) end end |