~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to HACKING

  • Committer: Martin Pool
  • Date: 2005-08-24 08:59:32 UTC
  • Revision ID: mbp@sourcefrog.net-20050824085932-c61f1f1f1c930e13
- Add a simple UIFactory 

  The idea of this is to let a client of bzrlib set some 
  policy about how output is displayed.

  In this revision all that's done is that progress bars
  are constructed by a policy established by the application
  rather than being randomly constructed in the library 
  or passed down the calls.  This avoids progress bars
  popping up while running the test suite and cleans up
  some code.

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