aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/core_ext
diff options
context:
space:
mode:
authorAaron Patterson <aaron.patterson@gmail.com>2011-01-19 14:31:22 -0800
committerAaron Patterson <aaron.patterson@gmail.com>2011-01-21 11:16:40 -0800
commit2570c85cb7de03a2c9cc183c73707a267f2efb91 (patch)
tree7f07fcd561c682049d10e2a7fe6b350f049bea1a /activesupport/test/core_ext
parent8491f16e128d2d2cfe53676f36c5d4c281712bde (diff)
downloadrails-2570c85cb7de03a2c9cc183c73707a267f2efb91.tar.gz
rails-2570c85cb7de03a2c9cc183c73707a267f2efb91.tar.bz2
rails-2570c85cb7de03a2c9cc183c73707a267f2efb91.zip
fixing psych support in big decimal, fixing tests to support YAML 1.1
Diffstat (limited to 'activesupport/test/core_ext')
-rw-r--r--activesupport/test/core_ext/bigdecimal_test.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/activesupport/test/core_ext/bigdecimal_test.rb b/activesupport/test/core_ext/bigdecimal_test.rb
index d592973d7a..b38e08a9f4 100644
--- a/activesupport/test/core_ext/bigdecimal_test.rb
+++ b/activesupport/test/core_ext/bigdecimal_test.rb
@@ -4,10 +4,10 @@ require 'active_support/core_ext/big_decimal'
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)
+ 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