diff options
author | Roque Pinel <repinel@gmail.com> | 2015-08-12 21:48:57 -0400 |
---|---|---|
committer | Roque Pinel <repinel@gmail.com> | 2015-08-12 21:49:12 -0400 |
commit | d723bc315e1744813eb0506ec650211e6334610e (patch) | |
tree | b225efe927cfdd423b243682f83f270b3ab652a4 /activesupport/test/core_ext | |
parent | 2a05a72e6a2ff8b7e931b7849e2482f376a57a36 (diff) | |
download | rails-d723bc315e1744813eb0506ec650211e6334610e.tar.gz rails-d723bc315e1744813eb0506ec650211e6334610e.tar.bz2 rails-d723bc315e1744813eb0506ec650211e6334610e.zip |
Assert that the `:prefix` option of `number_to_human_size` is deprecated
Diffstat (limited to 'activesupport/test/core_ext')
-rw-r--r-- | activesupport/test/core_ext/numeric_ext_test.rb | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/activesupport/test/core_ext/numeric_ext_test.rb b/activesupport/test/core_ext/numeric_ext_test.rb index 2d8796179e..0ff8f0f89b 100644 --- a/activesupport/test/core_ext/numeric_ext_test.rb +++ b/activesupport/test/core_ext/numeric_ext_test.rb @@ -280,14 +280,16 @@ class NumericExtFormattingTest < ActiveSupport::TestCase end def test_to_s__human_size_with_si_prefix - assert_equal '3 Bytes', 3.14159265.to_s(:human_size, :prefix => :si) - assert_equal '123 Bytes', 123.0.to_s(:human_size, :prefix => :si) - assert_equal '123 Bytes', 123.to_s(:human_size, :prefix => :si) - assert_equal '1.23 KB', 1234.to_s(:human_size, :prefix => :si) - assert_equal '12.3 KB', 12345.to_s(:human_size, :prefix => :si) - assert_equal '1.23 MB', 1234567.to_s(:human_size, :prefix => :si) - assert_equal '1.23 GB', 1234567890.to_s(:human_size, :prefix => :si) - assert_equal '1.23 TB', 1234567890123.to_s(:human_size, :prefix => :si) + assert_deprecated do + assert_equal '3 Bytes', 3.14159265.to_s(:human_size, :prefix => :si) + assert_equal '123 Bytes', 123.0.to_s(:human_size, :prefix => :si) + assert_equal '123 Bytes', 123.to_s(:human_size, :prefix => :si) + assert_equal '1.23 KB', 1234.to_s(:human_size, :prefix => :si) + assert_equal '12.3 KB', 12345.to_s(:human_size, :prefix => :si) + assert_equal '1.23 MB', 1234567.to_s(:human_size, :prefix => :si) + assert_equal '1.23 GB', 1234567890.to_s(:human_size, :prefix => :si) + assert_equal '1.23 TB', 1234567890123.to_s(:human_size, :prefix => :si) + end end def test_to_s__human_size_with_options_hash |