27
27
revision as _mod_revision,
29
29
from bzrlib.repofmt.knitrepo import RepositoryFormatKnit1
30
from bzrlib.tests import TestCaseWithTransport
30
from bzrlib.tests.blackbox import ExternalBase
31
31
from bzrlib.tests import (
38
38
from bzrlib.workingtree import WorkingTree
41
class TestBranch(TestCaseWithTransport):
41
class TestBranch(ExternalBase):
43
43
def example_branch(self, path='.'):
44
44
tree = self.make_branch_and_tree(path)
217
217
b = branch.Branch.open('b')
218
218
self.assertEndsWith(b.get_bound_location(), '/a/')
220
def test_branch_with_post_branch_init_hook(self):
222
branch.Branch.hooks.install_named_hook('post_branch_init',
224
self.assertLength(0, calls)
225
self.example_branch('a')
226
self.assertLength(1, calls)
227
self.run_bzr('branch a b')
228
self.assertLength(2, calls)
230
def test_checkout_with_post_branch_init_hook(self):
232
branch.Branch.hooks.install_named_hook('post_branch_init',
234
self.assertLength(0, calls)
235
self.example_branch('a')
236
self.assertLength(1, calls)
237
self.run_bzr('checkout a b')
238
self.assertLength(2, calls)
240
def test_lightweight_checkout_with_post_branch_init_hook(self):
242
branch.Branch.hooks.install_named_hook('post_branch_init',
244
self.assertLength(0, calls)
245
self.example_branch('a')
246
self.assertLength(1, calls)
247
self.run_bzr('checkout --lightweight a b')
248
self.assertLength(2, calls)
251
class TestBranchStacked(TestCaseWithTransport):
221
class TestBranchStacked(ExternalBase):
252
222
"""Tests for branch --stacked"""
254
224
def assertRevisionInRepository(self, repo_path, revid):
379
class TestSmartServerBranching(TestCaseWithTransport):
349
class TestSmartServerBranching(ExternalBase):
381
351
def test_branch_from_trivial_branch_to_same_server_branch_acceptance(self):
382
352
self.setup_smart_server_with_call_log()