Added an ordering definition to make test output reliable across database backends.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@8091 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Russell Keith-Magee 2008-07-26 14:49:39 +00:00
parent 66612ef529
commit eca3c7d3d6
1 changed files with 4 additions and 1 deletions

View File

@ -3,6 +3,9 @@ from django.db import models
class Author(models.Model): class Author(models.Model):
name = models.CharField(max_length=100) name = models.CharField(max_length=100)
class Meta:
ordering = ('name',)
def __unicode__(self): def __unicode__(self):
return self.name return self.name
@ -196,7 +199,7 @@ True
... instance.save() ... instance.save()
>>> formset.save_m2m() >>> formset.save_m2m()
>>> instances[0].authors.all() >>> instances[0].authors.all()
[<Author: Charles Baudelaire>, <Author: Walt Whitman>, <Author: Paul Verlaine>, <Author: John Steinbeck>] [<Author: Charles Baudelaire>, <Author: John Steinbeck>, <Author: Paul Verlaine>, <Author: Walt Whitman>]
# delete the author we created to allow later tests to continue working. # delete the author we created to allow later tests to continue working.
>>> new_author.delete() >>> new_author.delete()