1
0
mirror of https://github.com/django/django.git synced 2025-01-31 20:59:17 +00:00

15 lines
391 B
Python

import pickle
from django.test import TestCase
from models import Group, Event
class PickleabilityTestCase(TestCase):
def assert_pickles(self, qs):
self.assertEqual(list(pickle.loads(pickle.dumps(qs))), list(qs))
def test_related_field(self):
g = Group.objects.create(name="Ponies Who Own Maybachs")
self.assert_pickles(Event.objects.filter(group=g.id))