aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/number_helper_test.rb
diff options
context:
space:
mode:
authorCarlos Antonio da Silva <carlosantoniodasilva@gmail.com>2013-02-22 19:37:10 -0300
committerCarlos Antonio da Silva <carlosantoniodasilva@gmail.com>2013-02-22 19:44:50 -0300
commit38f347a825cf132b1e0da9402532b40d6ea68522 (patch)
tree45c262774af35fcd1da577ddddee3e50893f18a1 /activesupport/test/number_helper_test.rb
parent1fbfdf5e1bb912d52bfcffb0f6f55d2a6e05f44e (diff)
downloadrails-38f347a825cf132b1e0da9402532b40d6ea68522.tar.gz
rails-38f347a825cf132b1e0da9402532b40d6ea68522.tar.bz2
rails-38f347a825cf132b1e0da9402532b40d6ea68522.zip
Move number_to_human test from AP to AS
Since all changes from #9347 are related to AS, it seems proper that the test is placed there as well.
Diffstat (limited to 'activesupport/test/number_helper_test.rb')
-rw-r--r--activesupport/test/number_helper_test.rb7
1 files changed, 7 insertions, 0 deletions
diff --git a/activesupport/test/number_helper_test.rb b/activesupport/test/number_helper_test.rb
index 5f54587f93..1fadef3637 100644
--- a/activesupport/test/number_helper_test.rb
+++ b/activesupport/test/number_helper_test.rb
@@ -301,6 +301,13 @@ module ActiveSupport
end
end
+ def test_number_to_human_with_custom_units_that_are_missing_the_needed_key
+ [@instance_with_helpers, TestClassWithClassNumberHelpers, ActiveSupport::NumberHelper].each do |number_helper|
+ assert_equal '123', number_helper.number_to_human(123, units: { thousand: 'k'})
+ assert_equal '123', number_helper.number_to_human(123, units: {})
+ end
+ end
+
def test_number_to_human_with_custom_format
[@instance_with_helpers, TestClassWithClassNumberHelpers, ActiveSupport::NumberHelper].each do |number_helper|
assert_equal '123 times Thousand', number_helper.number_to_human(123456, :format => "%n times %u")