Django

Code

Changeset 6370

Show
Ignore:
Timestamp:
09/17/07 09:48:33 (8 months ago)
Author:
russellm
Message:

Fixed #5496 -- Added test cases for some of the built-in Django views. Thanks to Manuel Saelices <msaelices@yaco.es> for the original patch.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/AUTHORS

    r6365 r6370  
    261261    Oliver Rutherfurd <http://rutherfurd.net/> 
    262262    ryankanno 
     263    Manuel Saelices <msaelices@yaco.es>  
    263264    Ivan Sagalaev (Maniac) <http://www.softwaremaniacs.org/> 
    264265    Vinay Sajip <vinay_sajip@yahoo.co.uk> 
  • django/trunk/tests/urls.py

    r5876 r6370  
    1212    # test urlconf for {% url %} template tag 
    1313    (r'^url_tag/', include('regressiontests.templates.urls')), 
     14     
     15    # django built-in views 
     16    (r'^views/', include('regressiontests.views.urls')), 
    1417)