~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to HACKING

  • Committer: Robert Collins
  • Date: 2005-10-07 06:17:49 UTC
  • mfrom: (1185.13.2) (1417.1.8)
  • Revision ID: robertc@robertcollins.net-20051007061749-191de10c005c1db3
merge in readonly and passthrough transaction - make log suck less

Show diffs side-by-side

added added

removed removed

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