~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/blackbox/test_selftest.py

  • Committer: John Arbash Meinel
  • Date: 2006-09-25 19:21:12 UTC
  • mto: This revision was merged to the branch mainline in revision 2041.
  • Revision ID: john@arbash-meinel.com-20060925192112-c2847645ff74e8c7
Add docstring to why run_bzr_captured is overridden

Show diffs side-by-side

added added

removed removed

Lines of Context:
88
88
 
89
89
    def run_bzr_captured(self, argv, retcode=0, encoding=None, stdin=None,
90
90
                         working_dir=None):
 
91
        """Override run_bzr_captured to test how it is invoked by run_bzr.
 
92
 
 
93
        We test how run_bzr_captured actually invokes bzr in another location.
 
94
        Here we only need to test that it is run_bzr passes the right
 
95
        parameters to run_bzr_captured.
 
96
        """
91
97
        self.argv = argv
92
98
        self.retcode = retcode
93
99
        self.encoding = encoding