~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_branch.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2010-08-17 08:47:32 UTC
  • mfrom: (5377.2.1 merge-2.2-into-devel)
  • Revision ID: pqm@pqm.ubuntu.com-20100817084732-nqa09at3c7h0wb7u
(spiv) Merge lp:bzr/2.2 into lp:bzr, including fixes for #192859,
        #224373, #300062, #585667, #614404, #617503.

Show diffs side-by-side

added added

removed removed

Lines of Context:
552
552
        self.assertTrue(hasattr(params, 'bzrdir'))
553
553
        self.assertTrue(hasattr(params, 'branch'))
554
554
 
 
555
    def test_post_branch_init_hook_repr(self):
 
556
        param_reprs = []
 
557
        _mod_branch.Branch.hooks.install_named_hook('post_branch_init',
 
558
            lambda params: param_reprs.append(repr(params)), None)
 
559
        branch = self.make_branch('a')
 
560
        self.assertLength(1, param_reprs)
 
561
        param_repr = param_reprs[0]
 
562
        self.assertStartsWith(param_repr, '<BranchInitHookParams of ')
 
563
 
555
564
    def test_post_switch_hook(self):
556
565
        from bzrlib import switch
557
566
        calls = []