/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/bzrdir_implementations/__init__.py

  • Committer: Jelmer Vernooij
  • Date: 2009-02-25 14:36:59 UTC
  • mfrom: (4048 +trunk)
  • mto: This revision was merged to the branch mainline in revision 4049.
  • Revision ID: jelmer@samba.org-20090225143659-vx6cbqtmyicuzfyf
Merge bzr.dev.

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
"""BzrDir implementation tests for bzr.
21
21
 
22
22
These test the conformance of all the bzrdir variations to the expected API.
23
 
Specific tests for individual formats are in the tests/test_bzrdir.py file 
 
23
Specific tests for individual formats are in the tests/test_bzrdir.py file
24
24
rather than in tests/branch_implementations/*.py.
25
25
"""
26
26
 
55
55
        self._transport_readonly_server = transport_readonly_server
56
56
        self._name_suffix = name_suffix
57
57
        self.scenarios = self.formats_to_scenarios(formats)
58
 
    
 
58
 
59
59
    def formats_to_scenarios(self, formats):
60
60
        """Transform the input formats to a list of scenarios.
61
61