Django

Code

Changeset 445

Show
Ignore:
Timestamp:
08/09/05 17:56:43 (3 years ago)
Author:
adrian
Message:

Added some extra examples to many_to_many unit test

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/tests/testapp/models/many_to_many.py

    r444 r445  
    7070[Django lets you build Web apps easily, NASA uses Python] 
    7171 
     72# If we delete an article, its publication won't be able to access it. 
     73>>> a2.delete() 
     74>>> articles.get_list() 
     75[Django lets you build Web apps easily] 
     76>>> p1.get_article_list(order_by=['headline']) 
     77[Django lets you build Web apps easily] 
     78 
    7279"""