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