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

  • Committer: Martin Pool
  • Date: 2007-02-07 09:11:31 UTC
  • mto: This revision was merged to the branch mainline in revision 2283.
  • Revision ID: mbp@sourcefrog.net-20070207091131-458fw18bgytvaz7t
Move Knit repositories into the submodule bzrlib.repofmt.knitrepo and
lazily load from the registry.

InterRepo._matching_repo_format is now a method not a class field so that
it can load repositories when we need them.

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
from bzrlib.builtins import cmd_commit, cmd_log, cmd_status
26
26
from bzrlib.commands import Command, parse_args
27
27
from bzrlib.tests import TestCase
 
28
from bzrlib.repofmt import knitrepo
28
29
 
29
30
def parse(options, args):
30
31
    parser = option.get_optparser(dict((o.name, o) for o in options))
162
163
                   bzrdir.format_registry, builtins.get_format_type)]
163
164
        opts, args = self.parse(options, ['--format', 'knit'])
164
165
        self.assertIsInstance(opts.format.repository_format,
165
 
                              repository.RepositoryFormatKnit1)
 
166
                              knitrepo.RepositoryFormatKnit1)
166
167
 
167
168
    def test_help(self):
168
169
        registry = bzrdir.BzrDirFormatRegistry()
169
170
        registry.register_metadir('one', 'RepositoryFormat7', 'one help')
170
 
        registry.register_metadir('two', 'RepositoryFormatKnit1', 'two help')
 
171
        registry.register_metadir('two', 'RepositoryFormatKnit1', 'two help',
 
172
            repo_module='bzrlib.repofmt.knitrepo')
171
173
        registry.set_default('one')
172
174
        options = [option.RegistryOption('format', 'format help', registry,
173
175
                   str, value_switches=True)]
188
190
                         [('hello', None, 'GAR', 'fg')])
189
191
        registry = bzrdir.BzrDirFormatRegistry()
190
192
        registry.register_metadir('one', 'RepositoryFormat7', 'one help')
191
 
        registry.register_metadir('two', 'RepositoryFormatKnit1', 'two help')
 
193
        registry.register_metadir('two', 'RepositoryFormatKnit1', 'two help',
 
194
            repo_module='bzrlib.repofmt.knitrepo')
192
195
        registry.set_default('one')
193
196
        opt = option.RegistryOption('format', 'format help', registry,
194
197
                                    value_switches=False)