~djfische/rpc4django/main

« back to all changes in this revision

Viewing changes to docs/getting-involved/testing.txt

  • Committer: David Fischer
  • Date: 2011-11-14 06:34:21 UTC
  • Revision ID: djfische@gmail.com-20111114063421-callmuj5rid6ewfi
Updated the docs

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
Unit testing
2
2
============
3
3
 
4
 
All unit tests can be `run`_ using ``manage.py``
5
 
 
6
 
.. _run: http://docs.djangoproject.com/en/dev/topics/testing/#id1
7
 
 
8
 
::
9
 
 
10
 
        python manage.py test rpc4django
11
 
        
12
 
Some tests require ``DJANGO_SETTINGS_MODULE`` to be set. The test cases that do not require
13
 
the Django environment can be run using the following:
14
 
 
15
 
::
16
 
 
17
 
        python setup.py test
18
 
        
 
 
b'\\ No newline at end of file'
 
4
All unit tests can be run using ``setup.py``
 
5
 
 
6
::
 
7
 
 
8
    python setup.py test
 
9