~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to HACKING

  • Committer: Aaron Bentley
  • Date: 2005-09-12 02:53:07 UTC
  • mto: (1185.3.4)
  • mto: This revision was merged to the branch mainline in revision 1390.
  • Revision ID: aaron.bentley@utoronto.ca-20050912025307-8c21544e8db1cbdb
added all_descendants and node_distances, exception when root doesn't exist

Show diffs side-by-side

added added

removed removed

Lines of Context:
82
82
 
83
83
The policy about how output is presented in the text-mode client
84
84
should be only in the command-line tool.
 
85
 
 
86
Writing tests
 
87
=============
 
88
In general tests should be placed in a file named test_FOO.py where 
 
89
FOO is the logical thing under test. That file should be placed in the
 
90
tests subdirectory under the package being tested.
 
91
 
 
92
For example, tests for merge3 in bzrlib belong in bzrlib/tests/test_merge3.py.
 
93
 
 
94
Running tests
 
95
=============
 
96
Currently, bzr selftest is used to invoke tests.
 
97
You can provide a pattern argument to run a subset. For example, 
 
98
to run just the whitebox tests, run bzr selftest --pattern .*whitebox.*
 
99