Django

Code

Changeset 3833

Show
Ignore:
Timestamp:
09/25/06 12:22:59 (2 years ago)
Author:
adrian
Message:

Proofread changes to docs/contributing.txt from [3771]

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/docs/contributing.txt

    r3771 r3833  
    260260 
    261261The Django tests all use the testing infrastructure that ships with Django for 
    262 testing applications. See `Testing Django Applications`_ for an explanation of 
     262testing applications. See `Testing Django applications`_ for an explanation of 
    263263how to write new tests. 
    264264 
    265 .. _Testing Django Applications: http://www.djangoproject.com/documentation/testing/ 
     265.. _Testing Django applications: http://www.djangoproject.com/documentation/testing/ 
    266266 
    267267Running the unit tests 
     
    274274Yes, the unit tests need a settings module, but only for database connection 
    275275info -- the ``DATABASE_ENGINE``, ``DATABASE_USER`` and ``DATABASE_PASSWORD``. 
    276 You will also need a ``ROOT_URLCONF`` setting (it's value is ignored; it just 
     276You will also need a ``ROOT_URLCONF`` setting (its value is ignored; it just 
    277277needs to be present) and a ``SITE_ID`` setting (any integer value will do) in 
    278278order for all the tests to pass.