1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Removed unused setup

This commit is contained in:
Anupam Choudhury 2013-04-09 20:57:55 +05:30
parent a74d84bb29
commit e000aa92dd

View file

@ -50,14 +50,10 @@ class XmlSerializationTest < ActiveModel::TestCase
customer.name = "John"
@contact.preferences = customer
@contact.address = Address.new
@contact.address.street = "123 Lane"
@contact.address.city = "Springfield"
@contact.address.state = "CA"
@contact.address.zip = 11111
@contact.address.apt_number = 35
@contact.friends = [Contact.new, Contact.new]
@related_contact = SerializableContact.new
@related_contact.name = "related"
@contact.contact = @related_contact
end