Sha256: ff6aa6502287a8fa02c3e597cb1d19ce78d79d08198308f9d0b637fa11a33e59
Contents?: true
Size: 1015 Bytes
Versions: 1
Compression:
Stored size: 1015 Bytes
Contents
# _____ _ # |_ _|__ ___| |_ # | |/ _ \/ __| __| # | | __/\__ \ |_ # |_|\___||___/\__| # # for lib/facets/core/float/round_to.rb # # Extracted Fri Feb 16 02:00:36 EST 2007 # Project.rb Test Extraction # require 'facets/core/float/round_to.rb' require 'test/unit' class TCFloat < Test::Unit::TestCase def setup @f0 = [ 0, 10, 15, 105 ] @f1 = [ 10.1, 10.01, 10.9, 10.09, 10.5, 10.05, 10.49 ] end def test_round_to_arg1 fr = @f0.collect { |f| f.round_to(0.1) } assert_equal( [0,10,15,105], fr ) fr = @f1.collect { |f| f.round_to(0.1) } assert_equal( [10.1,10.0,10.9,10.1,10.5,10.1,10.5], fr ) end def test_round_to_arg10 fr = @f0.collect { |f| f.round_to(10) } assert_equal( [0,10,20,110], fr ) fr = @f1.collect { |f| f.round_to(10) } assert_equal( [10,10,10,10,10,10,10], fr ) end def test_round_off assert_equal( 1.0, 1.2.round_off ) assert_equal( 2.0, 1.8.round_off ) end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
facets-1.8.49 | test/lib/facets/core/float/test_round_to.rb |