/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_generate_docs.py

  • Committer: Vincent Ladeuil
  • Date: 2009-05-12 08:07:37 UTC
  • mto: (4350.1.1 integration)
  • mto: This revision was merged to the branch mainline in revision 4354.
  • Revision ID: v.ladeuil+lp@free.fr-20090512080737-itf02crgp0kxir0p
Fixed as per Robert's review.

* tests/__init__.py:
(TestCase._track_locks): Make unbalanced locks fatal.

* tests/test_selftest.py:
(TestTestCaseWithMemoryTransport.test_dangling_locks_cause_failures):
The failure is now unconditional.

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
 
23
23
from cStringIO import StringIO
24
24
 
25
 
import bzrlib.commands
26
25
from bzrlib.tests import TestCase, TestSkipped
27
26
 
28
27
 
38
37
        self.sio = StringIO()
39
38
        self.options = Options()
40
39
        self.options.bzr_name = 'bzr'
41
 
        bzrlib.commands.install_bzr_command_hooks()
42
40
 
43
41
    def test_man_page(self):
44
 
        from bzrlib.doc_generate import autodoc_man
 
42
        try:
 
43
            from tools.doc_generate import autodoc_man
 
44
        except ImportError:
 
45
            raise TestSkipped('The package "tools" is not available to test.')
45
46
 
46
47
        autodoc_man.infogen(self.options, self.sio)
47
48
        self.assertNotEqual('', self.sio.getvalue())
48
49
 
49
50
    def test_rstx_man(self):
50
 
        from bzrlib.doc_generate import autodoc_rstx
 
51
        try:
 
52
            from tools.doc_generate import autodoc_rstx
 
53
        except ImportError:
 
54
            raise TestSkipped('The package "tools" is not available to test.')
51
55
 
52
56
        autodoc_rstx.infogen(self.options, self.sio)
53
57
        self.assertNotEqual('', self.sio.getvalue())