Ticket #22050: defer_models.py

File defer_models.py, 326 bytes (added by lovasb, 11 years ago)

Defer test models.py

Line 
1diff --git a/tests/defer/models.py b/tests/defer/models.py
2index ffc8a0c..8b77861 100644
3--- a/tests/defer/models.py
4+++ b/tests/defer/models.py
5@@ -32,3 +32,8 @@ class BigChild(Primary):
6 class ChildProxy(Child):
7 class Meta:
8 proxy = True
9+
10+
11+class PrimaryProxy(Primary):
12+ class Meta:
13+ proxy = True
Back to Top