mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* lib/test/unit/collector/dir.rb: $: bug fix. [ruby-core:24115]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@24668 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
389e0d1512
commit
4b644df8f5
2 changed files with 5 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
|||
Wed Aug 26 19:17:47 2009 Kazuhiro NISHIYAMA <zn@mbf.nifty.com>
|
||||
|
||||
* lib/test/unit/collector/dir.rb: $: bug fix. [ruby-core:24115]
|
||||
|
||||
Mon Aug 24 21:33:34 2009 Kouhei Sutou <kou@cozmixng.org>
|
||||
|
||||
* lib/rss/maker/base.rb, test/rss/test_maker_2.0.rb: fix a bug
|
||||
|
|
|
@ -91,7 +91,7 @@ module Test
|
|||
end
|
||||
find_test_cases(already_gathered).each{|t| add_suite(suites, t.suite)}
|
||||
ensure
|
||||
$:.delete_at($:.rindex(dir)) if(dir)
|
||||
$:.delete_at($:.index(dir)) if(dir)
|
||||
end
|
||||
|
||||
def realdir(path)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue