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

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

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