Sha256: 3d42c5e05e30effa2141e0178db13bcb0f4018fe1f0efb601b25e86856e3875f
Contents?: true
Size: 1.58 KB
Versions: 7
Compression:
Stored size: 1.58 KB
Contents
require_relative '../../test_helper' DuckPuncher.(Numeric, String) class NumericTest < MiniTest::Test def test_to_currency assert_equal '0.00', 0.to_currency assert_equal '25.00', 25.to_currency assert_equal '25.20', 25.2.to_currency assert_equal '25.25', 25.245.to_currency assert_equal '$25.25', 25.245.to_currency('$') end def test_to_duration assert_equal '', 10.to_duration assert_equal '1 min', 100.to_duration assert_equal '16 min', 1_000.to_duration assert_equal '2 h 46 min', 10_000.to_duration assert_equal '27 h 46 min', 100_000.to_duration end def test_to_duration_with_seconds assert_equal '10 s', 10.to_duration(true) assert_equal '1 min 40 s', 100.to_duration(true) assert_equal '16 min 40 s', 1_000.to_duration(true) assert_equal '2 h 46 min', 10_000.to_duration(true) end def test_to_rad assert_equal 0.0, 0.to_rad assert_equal 0.17715091907742445, 10.15.to_rad assert_equal 0.36035409894869713, 20.646769.to_rad assert_equal -2.730392366234936, -156.439959.to_rad end def test_to_time_ago assert_equal 'less than a minute ago', 10.to_time_ago assert_equal '1 minute ago', 100.to_time_ago assert_equal '2 minutes ago', 130.to_time_ago assert_equal '16 minutes ago', 1_000.to_time_ago assert_equal '1 hour ago', 3_600.to_time_ago assert_equal '1 hour ago', 4_600.to_time_ago assert_equal '2 hours ago', 7_300.to_time_ago assert_equal '1 day ago', 86_400.to_time_ago assert_equal '1 day ago', 100_000.to_time_ago assert_equal '2 days ago', 180_000.to_time_ago end end
Version data entries
7 entries across 7 versions & 1 rubygems