From 5389661931c4ebed0a37f58cecb2b27ec6545032 Mon Sep 17 00:00:00 2001 From: eregon Date: Wed, 14 Oct 2015 16:57:46 +0000 Subject: * test/ostruct/test_ostruct.rb: Add tests for OpenStruct#respond_to. Patch by @jeremy in [GH-1041]: https://github.com/ruby/ruby/pull/1041 git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@52126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/ostruct/test_ostruct.rb | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'test/ostruct') diff --git a/test/ostruct/test_ostruct.rb b/test/ostruct/test_ostruct.rb index 14bc2b2da8..2e8fc7bf58 100644 --- a/test/ostruct/test_ostruct.rb +++ b/test/ostruct/test_ostruct.rb @@ -9,6 +9,19 @@ class TC_OpenStruct < Test::Unit::TestCase assert_equal h, OpenStruct.new(Struct.new(*h.keys).new(*h.values)).to_h end + def test_respond_to + o = OpenStruct.new + o.a = 1 + assert_respond_to(o, :a) + assert_respond_to(o, :a=) + end + + def test_respond_to_with_lazy_getter + o = OpenStruct.new a: 1 + assert_respond_to(o, :a) + assert_respond_to(o, :a=) + end + def test_equality o1 = OpenStruct.new o2 = OpenStruct.new -- cgit v1.2.3