mirror of https://github.com/django/django.git
15 lines
391 B
Python
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))
|