15 Oct
2009
15 Oct
'09
6:37 a.m.
Revision: 2809 http://trac.macosforge.org/projects/ruby/changeset/2809 Author: lsansonetti@apple.com Date: 2009-10-14 23:37:10 -0700 (Wed, 14 Oct 2009) Log Message: ----------- added one failing test Modified Paths: -------------- MacRuby/trunk/test_vm/constant.rb Modified: MacRuby/trunk/test_vm/constant.rb =================================================================== --- MacRuby/trunk/test_vm/constant.rb 2009-10-15 02:43:28 UTC (rev 2808) +++ MacRuby/trunk/test_vm/constant.rb 2009-10-15 06:37:10 UTC (rev 2809) @@ -127,3 +127,13 @@ end Foo.new.hey } + +assert '42', %{ + module Foo; end + module Foo::Bar + FOO=42 + class X + p FOO + end + end +}