aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test
diff options
context:
space:
mode:
authorAaron Patterson <aaron.patterson@gmail.com>2011-01-19 15:19:57 -0800
committerAaron Patterson <aaron.patterson@gmail.com>2011-01-21 11:16:40 -0800
commit7642b7531d222c9d7a94add50fffca69458e0eef (patch)
tree9e22e5e921f344c888bad2217b4e25a2d4f91538 /activesupport/test
parent2570c85cb7de03a2c9cc183c73707a267f2efb91 (diff)
downloadrails-7642b7531d222c9d7a94add50fffca69458e0eef.tar.gz
rails-7642b7531d222c9d7a94add50fffca69458e0eef.tar.bz2
rails-7642b7531d222c9d7a94add50fffca69458e0eef.zip
prefering psych as the yaml parser if possible, fixing assertions for YAML 1.1 compatibility
Diffstat (limited to 'activesupport/test')
-rw-r--r--activesupport/test/core_ext/time_with_zone_test.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/activesupport/test/core_ext/time_with_zone_test.rb b/activesupport/test/core_ext/time_with_zone_test.rb
index 2b86da67fa..5c226c2d09 100644
--- a/activesupport/test/core_ext/time_with_zone_test.rb
+++ b/activesupport/test/core_ext/time_with_zone_test.rb
@@ -106,11 +106,11 @@ class TimeWithZoneTest < Test::Unit::TestCase
end
def test_to_yaml
- assert_equal "--- 2000-01-01 00:00:00 Z\n", @twz.to_yaml
+ assert_match(/^--- 2000-01-01 00:00:00(\.0+)?\s*Z\n/, @twz.to_yaml)
end
def test_ruby_to_yaml
- assert_equal "--- \n:twz: 2000-01-01 00:00:00 Z\n", {:twz => @twz}.to_yaml
+ assert_match(/---\s*\n:twz: 2000-01-01 00:00:00(\.0+)?\s*Z\n/, {:twz => @twz}.to_yaml)
end
def test_httpdate