summaryrefslogtreecommitdiff
path: root/test/ruby/test_variable.rb
diff options
context:
space:
mode:
authormame <mame@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-01-22 14:53:12 +0000
committermame <mame@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-01-22 14:53:12 +0000
commitd8d5e67184e0647f56576a500993c064e60fc26a (patch)
treedcd5ea6e77c1d952acba1eeb81abb63079eb9355 /test/ruby/test_variable.rb
parent1d674dc54730b7ffe900146139cbac13fe967f50 (diff)
* test/ruby/test_regexp.rb, test/ruby/test_symbol.rb,
test/ruby/test_variable.rb: add some tests (for coverage of compile.c). git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@26378 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/ruby/test_variable.rb')
-rw-r--r--test/ruby/test_variable.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/ruby/test_variable.rb b/test/ruby/test_variable.rb
index 990658cb5a..53e00301dc 100644
--- a/test/ruby/test_variable.rb
+++ b/test/ruby/test_variable.rb
@@ -85,4 +85,8 @@ class TestVariable < Test::Unit::TestCase
def test_global_variable_poped
assert_nothing_raised { eval("$foo; 1") }
end
+
+ def test_constant_poped
+ assert_nothing_raised { eval("TestVariable::Gods; 1") }
+ end
end