summaryrefslogtreecommitdiff
path: root/tests/regressiontests/bug639/models.py
diff options
context:
space:
mode:
authorJeremy Dunck <jdunck@gmail.com>2007-03-06 14:21:30 +0000
committerJeremy Dunck <jdunck@gmail.com>2007-03-06 14:21:30 +0000
commit5514d8731955466dad0cdaf395ddd4da1c101274 (patch)
tree7a51066204f4bacb3bfb30a74d089d3309959177 /tests/regressiontests/bug639/models.py
parentd60c44319459ea6aeb7d2c77d2efd8b4b4683296 (diff)
gis: Merged revisions 4564-4668 via svnmerge from
http://code.djangoproject.com/svn/django/trunk git-svn-id: http://code.djangoproject.com/svn/django/branches/gis@4669 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'tests/regressiontests/bug639/models.py')
-rw-r--r--tests/regressiontests/bug639/models.py16
1 files changed, 16 insertions, 0 deletions
diff --git a/tests/regressiontests/bug639/models.py b/tests/regressiontests/bug639/models.py
new file mode 100644
index 0000000000..7cfdfc82ef
--- /dev/null
+++ b/tests/regressiontests/bug639/models.py
@@ -0,0 +1,16 @@
+import tempfile
+from django.db import models
+
+class Photo(models.Model):
+ title = models.CharField(maxlength=30)
+ image = models.FileField(upload_to=tempfile.gettempdir())
+
+ # Support code for the tests; this keeps track of how many times save() gets
+ # called on each instance.
+ def __init__(self, *args, **kwargs):
+ super(Photo, self).__init__(*args, **kwargs)
+ self._savecount = 0
+
+ def save(self):
+ super(Photo, self).save()
+ self._savecount +=1 \ No newline at end of file