/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_branch.py

  • Committer: John Arbash Meinel
  • Date: 2008-06-05 16:27:16 UTC
  • mfrom: (3475 +trunk)
  • mto: This revision was merged to the branch mainline in revision 3476.
  • Revision ID: john@arbash-meinel.com-20080605162716-a3hn238tnctbfd8j
merge bzr.dev, resolve NEWS

Show diffs side-by-side

added added

removed removed

Lines of Context:
53
53
from bzrlib.tests import TestCase, TestCaseWithTransport
54
54
from bzrlib.transport import get_transport
55
55
 
 
56
 
56
57
class TestDefaultFormat(TestCase):
57
58
 
58
59
    def test_default_format(self):
294
295
        self.assertEqual(warnings[0], 'Value "new" is masked by "old" from '
295
296
                         'locations.conf')
296
297
 
 
298
 
297
299
class TestBranchReference(TestCaseWithTransport):
298
300
    """Tests for the branch reference facility."""
299
301
 
334
336
        self.assertTrue("pre_commit" in hooks, "pre_commit not in %s" % hooks)
335
337
        self.assertTrue("post_pull" in hooks, "post_pull not in %s" % hooks)
336
338
        self.assertTrue("post_uncommit" in hooks, "post_uncommit not in %s" % hooks)
 
339
        self.assertTrue("post_change_branch_tip" in hooks,
 
340
                        "post_change_branch_tip not in %s" % hooks)
337
341
 
338
342
    def test_installed_hooks_are_BranchHooks(self):
339
343
        """The installed hooks object should be a BranchHooks."""