summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2006-06-19 20:19:01 +0000
committerAdrian Holovaty <adrian@holovaty.com>2006-06-19 20:19:01 +0000
commited6d7285dd4c5fa61fd6aea07fb3d372feb3fa6b (patch)
tree4acd104045f08675ec5371e16edf87bc7c9e7eb3 /tests
parent1a1b1aa5db12a68ef89952700ecab954470fb684 (diff)
Fixed some small typos in generic_relations model tests
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3156 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'tests')
-rw-r--r--tests/modeltests/generic_relations/models.py14
1 files changed, 7 insertions, 7 deletions
diff --git a/tests/modeltests/generic_relations/models.py b/tests/modeltests/generic_relations/models.py
index a9a775ad6e..b0eea838d0 100644
--- a/tests/modeltests/generic_relations/models.py
+++ b/tests/modeltests/generic_relations/models.py
@@ -64,7 +64,7 @@ API_TESTS = """
... o.save()
# Objects with declared GenericRelations can be tagged directly -- the API
-# mimics the many-to-many API
+# mimics the many-to-many API.
>>> lion.tags.create(tag="yellow")
<TaggedItem: yellow>
>>> lion.tags.create(tag="hairy")
@@ -79,30 +79,30 @@ API_TESTS = """
>>> bacon.tags.all()
[<TaggedItem: fatty>, <TaggedItem: salty>]
-# You can easily access the content object like a foreign key
+# You can easily access the content object like a foreign key.
>>> t = TaggedItem.objects.get(tag="salty")
>>> t.content_object
<Vegetable: Bacon>
# Recall that the Mineral class doesn't have an explicit GenericRelation
-# defined. That's OK since you can create TaggedItems explicitally.
+# defined. That's OK, because you can create TaggedItems explicitly.
>>> tag1 = TaggedItem(content_object=quartz, tag="shiny")
>>> tag2 = TaggedItem(content_object=quartz, tag="clearish")
>>> tag1.save()
>>> tag2.save()
-# However, not having the convience takes a small toll when it comes
-# to do lookups
+# However, excluding GenericRelations means your lookups have to be a bit more
+# explicit.
>>> from django.contrib.contenttypes.models import ContentType
>>> ctype = ContentType.objects.get_for_model(quartz)
>>> TaggedItem.objects.filter(content_type__pk=ctype.id, object_id=quartz.id)
[<TaggedItem: clearish>, <TaggedItem: shiny>]
-# You can set a generic foreign key in the way you'd expect
+# You can set a generic foreign key in the way you'd expect.
>>> tag1.content_object = platypus
>>> tag1.save()
>>> platypus.tags.all()
[<TaggedItem: shiny>]
>>> TaggedItem.objects.filter(content_type__pk=ctype.id, object_id=quartz.id)
[<TaggedItem: clearish>]
-""" \ No newline at end of file
+"""