~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to HACKING

  • Committer: Robert Collins
  • Date: 2005-10-06 10:55:04 UTC
  • mto: This revision was merged to the branch mainline in revision 1420.
  • Revision ID: robertc@robertcollins.net-20051006105504-939ff8b54b1d7570
change HACKING test file names to be PEP8 conformant

Show diffs side-by-side

added added

removed removed

Lines of Context:
157
157
 
158
158
Writing tests
159
159
=============
160
 
In general tests should be placed in a file named test_FOO.py where 
 
160
In general tests should be placed in a file named testFOO.py where 
161
161
FOO is the logical thing under test. That file should be placed in the
162
162
tests subdirectory under the package being tested.
163
163
 
164
 
For example, tests for merge3 in bzrlib belong in bzrlib/tests/test_merge3.py.
 
164
For example, tests for merge3 in bzrlib belong in bzrlib/tests/testmerge3.py.
165
165
 
166
166
Running tests
167
167
=============