aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/ordered_options_test.rb
diff options
context:
space:
mode:
authorMarc-Andre Lafortune <github@marc-andre.ca>2012-05-05 02:24:57 -0400
committerMarc-Andre Lafortune <github@marc-andre.ca>2012-05-05 02:43:41 -0400
commit3ea70f985b1799c27b907724920e5615018e505d (patch)
tree1fbdc93902474f4c3f8f515007094015020ec007 /activesupport/test/ordered_options_test.rb
parent206b43a954dc6c6c0b4b3916cade2561413efdb5 (diff)
downloadrails-3ea70f985b1799c27b907724920e5615018e505d.tar.gz
rails-3ea70f985b1799c27b907724920e5615018e505d.tar.bz2
rails-3ea70f985b1799c27b907724920e5615018e505d.zip
Use respond_to_missing? for OrderedOptions
Diffstat (limited to 'activesupport/test/ordered_options_test.rb')
-rw-r--r--activesupport/test/ordered_options_test.rb8
1 files changed, 8 insertions, 0 deletions
diff --git a/activesupport/test/ordered_options_test.rb b/activesupport/test/ordered_options_test.rb
index 3526c7a366..f60f9a58e3 100644
--- a/activesupport/test/ordered_options_test.rb
+++ b/activesupport/test/ordered_options_test.rb
@@ -77,4 +77,12 @@ class OrderedOptionsTest < ActiveSupport::TestCase
assert copy.kind_of?(original.class)
assert_not_equal copy.object_id, original.object_id
end
+
+ def test_introspection
+ a = ActiveSupport::OrderedOptions.new
+ assert a.respond_to?(:blah)
+ assert a.respond_to?(:blah=)
+ assert_equal 42, a.method(:blah=).call(42)
+ assert_equal 42, a.method(:blah).call
+ end
end