mirror of
https://github.com/django/django.git
synced 2024-11-30 15:10:46 +01:00
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:
parent
66612ef529
commit
eca3c7d3d6
@ -3,6 +3,9 @@ from django.db import models
|
||||
class Author(models.Model):
|
||||
name = models.CharField(max_length=100)
|
||||
|
||||
class Meta:
|
||||
ordering = ('name',)
|
||||
|
||||
def __unicode__(self):
|
||||
return self.name
|
||||
|
||||
@ -196,7 +199,7 @@ True
|
||||
... instance.save()
|
||||
>>> formset.save_m2m()
|
||||
>>> 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.
|
||||
>>> new_author.delete()
|
||||
|
Loading…
Reference in New Issue
Block a user