summaryrefslogtreecommitdiff
path: root/lib/test/unit/collector
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-02-17 08:40:52 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-02-17 08:40:52 +0000
commitccf99b9ce600ceb1f0360db7af4164a916f03882 (patch)
tree3603c905bbb81de90e8de49e1b476c96137a7370 /lib/test/unit/collector
parentd0a3c64fb4af21a911f2b7553bbddb45dd9e4484 (diff)
* eval.c (ev_const_get): simplified using rb_const_get_fallback().
* eval.c (ev_const_defined): adopt to ev_const_get() using rb_const_defined_fallback(). * variable.c (rb_const_get_fallback): new function to implement constant search. * variable.c (rb_const_defined_fallback): new function to implement constant definition check. * variable.c (rb_const_get_0): adopt to new behavior. constants are looked up in the order of: current class, super classes (but Object), lexically external classes/modules, and Object. * variable.c (rb_const_defined_0): ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9949 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/test/unit/collector')
-rw-r--r--lib/test/unit/collector/objectspace.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/test/unit/collector/objectspace.rb b/lib/test/unit/collector/objectspace.rb
index d1127a981f..a0f837e33e 100644
--- a/lib/test/unit/collector/objectspace.rb
+++ b/lib/test/unit/collector/objectspace.rb
@@ -8,7 +8,7 @@ module Test
module Unit
module Collector
class ObjectSpace
- include Collector
+ include Test::Unit::Collector
NAME = 'collected from the ObjectSpace'