summaryrefslogtreecommitdiff
path: root/test/ostruct/test_ostruct.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/ostruct/test_ostruct.rb')
-rw-r--r--test/ostruct/test_ostruct.rb8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/ostruct/test_ostruct.rb b/test/ostruct/test_ostruct.rb
index 3ca98ee739..443a20c86a 100644
--- a/test/ostruct/test_ostruct.rb
+++ b/test/ostruct/test_ostruct.rb
@@ -249,6 +249,14 @@ class TC_OpenStruct < Test::Unit::TestCase
assert_equal(:bar, os.format)
end
+ def test_super
+ c = Class.new(OpenStruct) {
+ def foo; super; end
+ }
+ os = c.new(foo: :bar)
+ assert_equal(:bar, os.foo)
+ end
+
def test_overridden_public_methods
os = OpenStruct.new(method: :foo, class: :bar)
assert_equal(:foo, os.method)