diff options
author | hoffm <m@hof.fm> | 2013-02-20 16:15:59 -0500 |
---|---|---|
committer | Brian Samson <brian@briansamson.com> | 2013-03-19 09:30:50 -0500 |
commit | 1b12d08a0f8489f0f3970f6d5e40ed119127c856 (patch) | |
tree | c01136dfb1696551640387bb0019bd23d903f29b /actionpack/test | |
parent | 2cf38aebacaf78260848a54bfbb5bf5a9b627598 (diff) | |
download | rails-1b12d08a0f8489f0f3970f6d5e40ed119127c856.tar.gz rails-1b12d08a0f8489f0f3970f6d5e40ed119127c856.tar.bz2 rails-1b12d08a0f8489f0f3970f6d5e40ed119127c856.zip |
Backport #9347 to rails 3.2
Diffstat (limited to 'actionpack/test')
-rw-r--r-- | actionpack/test/template/number_helper_test.rb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/actionpack/test/template/number_helper_test.rb b/actionpack/test/template/number_helper_test.rb index 8d679aac1d..37ce3cf6b6 100644 --- a/actionpack/test/template/number_helper_test.rb +++ b/actionpack/test/template/number_helper_test.rb @@ -251,6 +251,11 @@ class NumberHelperTest < ActionView::TestCase assert_equal '4.5 tens', number_to_human(45, :units => {:unit => "", :ten => ' tens '}) end + def test_number_to_human_with_custom_units_that_are_missing_the_needed_key + assert_equal '123', number_to_human(123, :units => {:thousand => 'k'}) + assert_equal '123', number_to_human(123, :units => {}) + end + def test_number_to_human_with_custom_format assert_equal '123 times Thousand', number_to_human(123456, :format => "%n times %u") volume = {:unit => "ml", :thousand => "lt", :million => "m3"} |