diff options
author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-03-13 16:40:33 +0000 |
---|---|---|
committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-03-13 16:40:33 +0000 |
commit | 4a400007665848d066cb70571287803ec4a7440e (patch) | |
tree | bbe3edab181fce7ef4219a096e16786d59ad2523 /bootstraptest | |
parent | 2b8bbd765eafe421bbbc9012968d6e0b2ad5efaa (diff) | |
download | ruby-4a400007665848d066cb70571287803ec4a7440e.tar.gz ruby-4a400007665848d066cb70571287803ec4a7440e.tar.xz ruby-4a400007665848d066cb70571287803ec4a7440e.zip |
* bootstraptest/test_struct.rb: some test moved from test to shut
warning up.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@15768 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'bootstraptest')
-rw-r--r-- | bootstraptest/test_struct.rb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/bootstraptest/test_struct.rb b/bootstraptest/test_struct.rb new file mode 100644 index 000000000..a65964d5f --- /dev/null +++ b/bootstraptest/test_struct.rb @@ -0,0 +1,5 @@ +assert_equal 'Struct::Foo', %q{ + Struct.instance_eval { const_set(:Foo, nil) } + Struct.new("Foo") + Struct::Foo +} |