aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/core_ext/fixnum_ext_test.rb
diff options
context:
space:
mode:
authorNicholas Seckar <nseckar@gmail.com>2005-07-18 02:16:17 +0000
committerNicholas Seckar <nseckar@gmail.com>2005-07-18 02:16:17 +0000
commitdba6b8b46f93ed0116755bea17cfbce7ca6d7c72 (patch)
tree6e924204e44fb2b93ca852079f89ece7c735fea6 /activesupport/test/core_ext/fixnum_ext_test.rb
parent305a5463bd1caf4d0e2f96d39ef3cbbf455788c6 (diff)
downloadrails-dba6b8b46f93ed0116755bea17cfbce7ca6d7c72.tar.gz
rails-dba6b8b46f93ed0116755bea17cfbce7ca6d7c72.tar.bz2
rails-dba6b8b46f93ed0116755bea17cfbce7ca6d7c72.zip
Add ordinalize to Fixnum and Bignum instances
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1855 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activesupport/test/core_ext/fixnum_ext_test.rb')
-rw-r--r--activesupport/test/core_ext/fixnum_ext_test.rb7
1 files changed, 7 insertions, 0 deletions
diff --git a/activesupport/test/core_ext/fixnum_ext_test.rb b/activesupport/test/core_ext/fixnum_ext_test.rb
index 7ffc32a9e1..66297fc378 100644
--- a/activesupport/test/core_ext/fixnum_ext_test.rb
+++ b/activesupport/test/core_ext/fixnum_ext_test.rb
@@ -26,4 +26,11 @@ class FixnumExtTest < Test::Unit::TestCase
assert !22953686867719691230002707821868552601124472329079.multiple_of?(5)
assert !22953686867719691230002707821868552601124472329079.multiple_of?(7)
end
+
+ def test_ordinalize
+ # These tests are mostly just to ensure that the ordinalize method exists
+ # It's results are tested comprehensively in the inflector test cases.
+ assert_equal '1st', 1.ordinalize
+ assert_equal '8th', 8.ordinalize
+ end
end