aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/template
diff options
context:
space:
mode:
Diffstat (limited to 'actionpack/test/template')
-rw-r--r--actionpack/test/template/number_helper_test.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/actionpack/test/template/number_helper_test.rb b/actionpack/test/template/number_helper_test.rb
index d77156af40..fd418d1e06 100644
--- a/actionpack/test/template/number_helper_test.rb
+++ b/actionpack/test/template/number_helper_test.rb
@@ -35,6 +35,7 @@ class NumberHelperTest < Test::Unit::TestCase
def test_number_to_human_size
assert_equal '0 Bytes', human_size(0)
+ assert_equal '1 Byte', human_size(1)
assert_equal '3 Bytes', human_size(3.14159265)
assert_equal '123 Bytes', human_size(123.0)
assert_equal '123 Bytes', human_size(123)