class Minitest::Distributed::Filters::ExcludeFileFilter

Public Instance Methods

call(runnable) click to toggle source
# File lib/minitest/distributed/filters/exclude_file_filter.rb, line 12
def call(runnable)
  tests.include?(DefinedRunnable.identifier(runnable)) ? [] : [runnable]
end