aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/core_ext/boolean_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/boolean_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/boolean_ext_test.rb')
-rw-r--r--activesupport/test/core_ext/boolean_ext_test.rb9
1 files changed, 9 insertions, 0 deletions
diff --git a/activesupport/test/core_ext/boolean_ext_test.rb b/activesupport/test/core_ext/boolean_ext_test.rb
new file mode 100644
index 0000000000..751f703745
--- /dev/null
+++ b/activesupport/test/core_ext/boolean_ext_test.rb
@@ -0,0 +1,9 @@
+class BooleanExtAccessTests < Test::Unit::TestCase
+ def test_to_param_on_true
+ assert_equal true, true.to_param
+ end
+
+ def test_to_param_on_false
+ assert_equal false, false.to_param
+ end
+end \ No newline at end of file