summaryrefslogtreecommitdiffstats
path: root/rubygem-activerecord-xml-serialization.patch
diff options
context:
space:
mode:
Diffstat (limited to 'rubygem-activerecord-xml-serialization.patch')
-rw-r--r--rubygem-activerecord-xml-serialization.patch28
1 files changed, 28 insertions, 0 deletions
diff --git a/rubygem-activerecord-xml-serialization.patch b/rubygem-activerecord-xml-serialization.patch
new file mode 100644
index 0000000..aa0b0dd
--- /dev/null
+++ b/rubygem-activerecord-xml-serialization.patch
@@ -0,0 +1,28 @@
+From e9abd0fc11dd965dc8ea4de3fa8dcb694d2b112d Mon Sep 17 00:00:00 2001
+From: Ken Dreyer <ktdreyer@ktdreyer.com>
+Date: Thu, 7 Feb 2013 22:13:30 -0700
+Subject: [PATCH] skip xml in serialization_test
+
+With the recent YAML changes, these tests fail when trying calling
+from_xml. The simplest fix is to remove from_xml and to_xml from the
+test, and only test to_json and from_json.
+---
+ activerecord/test/cases/serialization_test.rb | 2 +-
+ 1 files changed, 1 insertions(+), 1 deletions(-)
+
+diff --git a/activerecord/test/cases/serialization_test.rb b/activerecord/test/cases/serialization_test.rb
+index 8841694..d2cfb62 100644
+--- a/activerecord/test/cases/serialization_test.rb
++++ b/activerecord/test/cases/serialization_test.rb
+@@ -2,7 +2,7 @@ require "cases/helper"
+ require 'models/contact'
+
+ class SerializationTest < ActiveRecord::TestCase
+- FORMATS = [ :xml, :json ]
++ FORMATS = [ :json ]
+
+ def setup
+ @contact_attributes = {
+--
+1.7.1
+