Class: Rails::TestUnit::Filter
- Inherits:
-
Object
- Object
- Rails::TestUnit::Filter
- Defined in:
- lib/rails/test_unit/runner.rb
Overview
:nodoc:
Instance Method Summary collapse
- #===(method) ⇒ Object
-
#initialize(runnable, file, line) ⇒ Filter
constructor
A new instance of Filter.
Constructor Details
#initialize(runnable, file, line) ⇒ Filter
Returns a new instance of Filter.
126 127 128 129 |
# File 'lib/rails/test_unit/runner.rb', line 126 def initialize(runnable, file, line) @runnable, @file = runnable, File.(file) @line = line.to_i if line end |
Instance Method Details
#===(method) ⇒ Object
131 132 133 134 135 136 137 138 139 140 |
# File 'lib/rails/test_unit/runner.rb', line 131 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 |