aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/core_ext/bigdecimal_test.rb
blob: 0272f564de0c9345062587fd70ee27c199611385 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
require 'abstract_unit'

class BigDecimalTest < Test::Unit::TestCase
  def test_to_yaml
    assert_equal("--- 100000.30020320320000000000000000000000000000001\n", BigDecimal.new('100000.30020320320000000000000000000000000000001').to_yaml)
    assert_equal("--- .Inf\n", BigDecimal.new('Infinity').to_yaml)
    assert_equal("--- .NaN\n", BigDecimal.new('NaN').to_yaml)
    assert_equal("--- -.Inf\n", BigDecimal.new('-Infinity').to_yaml)
  end

  def test_to_d
    bd = BigDecimal.new '10'
    assert_equal bd, bd.to_d
  end
end