212
212
"""A sample BzrDir implementation to allow testing static methods."""
214
214
def create_repository(self, shared=False):
218
218
def open_repository(self):
220
220
return SampleRepository(self)
222
222
def create_branch(self, name=None):
225
225
raise NoColocatedBranchSupport(self)
226
226
return SampleBranch(self)
228
228
def create_workingtree(self):