aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/core_ext/object_ext_test.rb
diff options
context:
space:
mode:
authorXavier Noria <fxn@hashref.com>2009-06-13 12:46:09 +0200
committerJeremy Kemper <jeremy@bitsweat.net>2009-06-13 15:01:14 -0700
commitb56169c26240db1b1cff3c6f65a34b7516a9fc15 (patch)
tree8f1d6ff26fd993afedbead7c1a4bd79ced5844a9 /activesupport/test/core_ext/object_ext_test.rb
parent9eeb5fed2ff8e781e56202f62b125bfadc486999 (diff)
downloadrails-b56169c26240db1b1cff3c6f65a34b7516a9fc15.tar.gz
rails-b56169c26240db1b1cff3c6f65a34b7516a9fc15.tar.bz2
rails-b56169c26240db1b1cff3c6f65a34b7516a9fc15.zip
moves reopening of core classes to add generic stuff from Action Pack to AS/core_ext and adds tests
[#2798 state:committed] Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net>
Diffstat (limited to 'activesupport/test/core_ext/object_ext_test.rb')
-rw-r--r--activesupport/test/core_ext/object_ext_test.rb6
1 files changed, 6 insertions, 0 deletions
diff --git a/activesupport/test/core_ext/object_ext_test.rb b/activesupport/test/core_ext/object_ext_test.rb
index a413d331c4..72e3bffa4c 100644
--- a/activesupport/test/core_ext/object_ext_test.rb
+++ b/activesupport/test/core_ext/object_ext_test.rb
@@ -5,4 +5,10 @@ class ObjectExtTest < Test::Unit::TestCase
foo = Object.new
assert_equal foo, foo.tap { |x| assert_equal foo, x; :bar }
end
+
+ def test_to_param
+ foo = Object.new
+ foo.class_eval("def to_s; 'foo'; end")
+ assert_equal 'foo', foo.to_param
+ end
end