1225
1226
class _TestBranch(bzrlib.branch.Branch):
1226
1227
"""Test Branch implementation for TestBzrDirSprout."""
1229
def __init__(self, transport, *args, **kwargs):
1229
1230
self._format = _TestBranchFormat()
1230
1233
super(_TestBranch, self).__init__(*args, **kwargs)
1234
1237
def sprout(self, *args, **kwargs):
1235
1238
self.calls.append('sprout')
1238
1241
def copy_content_into(self, destination, revision_id=None):
1239
1242
self.calls.append('copy_content_into')