/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/test_repository.py

  • Committer: Robert Collins
  • Date: 2008-01-02 22:30:46 UTC
  • mto: (3221.11.1 StackableBranch)
  • mto: This revision was merged to the branch mainline in revision 3226.
  • Revision ID: robertc@robertcollins.net-20080102223046-h8nxufr1v21pnei2
* A new repository format 'development' has been added. This format will
  represent the latest 'in-progress' format that the bzr developers are
  interested in getting early-adopter testing and feedback on.
  ``doc/developers/development-repo.txt`` has detailed information.
  (Robert Collins)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1178
1178
            t.get('format').read())
1179
1179
 
1180
1180
 
 
1181
class TestDevelopment0(TestKnitPackNoSubtrees):
 
1182
 
 
1183
    def get_format(self):
 
1184
        return bzrdir.format_registry.make_bzrdir(
 
1185
            'development')
 
1186
 
 
1187
    def check_format(self, t):
 
1188
        self.assertEqualDiff(
 
1189
            "Bazaar development format 0 (needs bzr.dev from before 1.1)\n",
 
1190
            t.get('format').read())
 
1191
 
 
1192
 
 
1193
class TestDevelopment0Subtree(TestKnitPackNoSubtrees):
 
1194
 
 
1195
    def get_format(self):
 
1196
        return bzrdir.format_registry.make_bzrdir(
 
1197
            'development-subtree')
 
1198
 
 
1199
    def check_format(self, t):
 
1200
        self.assertEqualDiff(
 
1201
            "Bazaar development format 0 with subtree support "
 
1202
            "(needs bzr.dev from before 1.1)\n",
 
1203
            t.get('format').read())
 
1204
 
 
1205
 
1181
1206
class TestRepositoryPackCollection(TestCaseWithTransport):
1182
1207
 
1183
1208
    def get_format(self):