~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_branch.py

  • Committer: Aaron Bentley
  • Date: 2008-04-24 04:58:42 UTC
  • mfrom: (3377 +trunk)
  • mto: This revision was merged to the branch mainline in revision 3380.
  • Revision ID: aaron@aaronbentley.com-20080424045842-0cajl9v6s4u52kaw
Merge bzr.dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
334
334
        self.assertTrue("pre_commit" in hooks, "pre_commit not in %s" % hooks)
335
335
        self.assertTrue("post_pull" in hooks, "post_pull not in %s" % hooks)
336
336
        self.assertTrue("post_uncommit" in hooks, "post_uncommit not in %s" % hooks)
 
337
        self.assertTrue("post_change_branch_tip" in hooks,
 
338
                        "post_change_branch_tip not in %s" % hooks)
337
339
 
338
340
    def test_installed_hooks_are_BranchHooks(self):
339
341
        """The installed hooks object should be a BranchHooks."""