Flowdock
method

find_test_cases

Importance_0
v1_8_7_330 - Show latest stable - 0 notes - Class: Test::Unit::Collector::Dir
find_test_cases(ignore=[]) public

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# File lib/test/unit/collector/dir.rb, line 44
        def find_test_cases(ignore=[])
          cases = []
          @object_space.each_object(Class) do |c|
            cases << c if(c < TestCase && !ignore.include?(c))
          end
          ignore.concat(cases)
          cases
        end
Register or log in to add new notes.