1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Merge pull request #21219 from repinel/assert-human-size-prefix-deprecated

Assert that the `:prefix` option of `number_to_human_size` is deprecated
This commit is contained in:
Yves Senn 2015-08-13 08:34:54 +02:00
commit 3b0e1e49e0

View file

@ -280,6 +280,7 @@ class NumericExtFormattingTest < ActiveSupport::TestCase
end end
def test_to_s__human_size_with_si_prefix def test_to_s__human_size_with_si_prefix
assert_deprecated do
assert_equal '3 Bytes', 3.14159265.to_s(:human_size, :prefix => :si) 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.0.to_s(:human_size, :prefix => :si)
assert_equal '123 Bytes', 123.to_s(:human_size, :prefix => :si) assert_equal '123 Bytes', 123.to_s(:human_size, :prefix => :si)
@ -289,6 +290,7 @@ class NumericExtFormattingTest < ActiveSupport::TestCase
assert_equal '1.23 GB', 1234567890.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_equal '1.23 TB', 1234567890123.to_s(:human_size, :prefix => :si)
end end
end
def test_to_s__human_size_with_options_hash def test_to_s__human_size_with_options_hash
assert_equal '1.2 MB', 1234567.to_s(:human_size, :precision => 2) assert_equal '1.2 MB', 1234567.to_s(:human_size, :precision => 2)