Class: Rails::TestUnit::Filter

Inherits:
Object
  • Object
show all
Defined in:
lib/rails/test_unit/runner.rb

Overview

:nodoc:

Instance Method Summary collapse

Constructor Details

#initialize(runnable, file, line) ⇒ Filter

Returns a new instance of Filter.



116
117
118
119
# File 'lib/rails/test_unit/runner.rb', line 116

def initialize(runnable, file, line)
  @runnable, @file = runnable, File.expand_path(file)
  @line = line.to_i if line
end

Instance Method Details

#===(method) ⇒ Object



121
122
123
124
125
126
127
128
129
130
# File 'lib/rails/test_unit/runner.rb', line 121

def ===(method)
  return unless @runnable.method_defined?(method)

  if @line
    test_file, test_range = definition_for(@runnable.instance_method(method))
    test_file == @file && test_range.include?(@line)
  else
    @runnable.instance_method(method).source_location.first == @file
  end
end