(self)
| 848 | ) |
| 849 | |
| 850 | def test_tickets_7204_7506(self): |
| 851 | # Make sure querysets with related fields can be pickled. If this |
| 852 | # doesn't crash, it's a Good Thing. |
| 853 | pickle.dumps(Item.objects.all()) |
| 854 | |
| 855 | def test_ticket7813(self): |
| 856 | # We should also be able to pickle things that use select_related(). |