Flowdock
method

include?

Importance_0
v1_8_7_330 - Show latest stable - 0 notes - Class: Test::Unit::Collector
include?(test) 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.rb, line 23
      def include?(test)
        return true if(@filters.empty?)
        @filters.each do |filter|
          result = filter[test]
          if(result.nil?)
            next
          elsif(!result)
            return false
          else
            return true
          end
        end
        true
      end
Register or log in to add new notes.