mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
65fe176ea4
* lib/test/unit.rb: Documentation update. * lib/test/unit/ui/console/testrunner.rb (TestRunner#initialize): Ditto. * lib/test/unit.rb: Factored out an ObjectSpace collector. * lib/test/unit/collector/objectspace.rb: Ditto. * sample/testunit/*: Added. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4576 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
30 lines
881 B
Ruby
30 lines
881 B
Ruby
# Author:: Nathaniel Talbott.
|
|
# Copyright:: Copyright (c) 2000-2002 Nathaniel Talbott. All rights reserved.
|
|
# License:: Ruby license.
|
|
|
|
require 'test/unit/error'
|
|
|
|
module Test
|
|
module Unit
|
|
class TC_Error < TestCase
|
|
def setup
|
|
@old_load_path = $:.dup
|
|
$:.replace(['C:\some\old\path'])
|
|
end
|
|
|
|
def test_backtrace_filtering
|
|
backtrace = [%q{tc_thing.rb:4:in '/'}]
|
|
|
|
backtrace.concat([%q{tc_thing.rb:4:in 'test_stuff'},
|
|
%q{C:\some\old\path/test/unit/testcase.rb:44:in 'send'},
|
|
%q{C:\some\old\path\test\unit\testcase.rb:44:in 'run'},
|
|
%q{tc_thing.rb:3}])
|
|
assert_equal([backtrace[0..1], backtrace[-1]].flatten, Error.filter(backtrace), "Should filter out all TestUnit-specific lines")
|
|
end
|
|
|
|
def teardown
|
|
$:.replace(@old_load_path)
|
|
end
|
|
end
|
|
end
|
|
end
|