~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/per_foreign_vcs/__init__.py

  • Committer: Jelmer Vernooij
  • Date: 2009-11-12 22:57:55 UTC
  • mto: This revision was merged to the branch mainline in revision 4833.
  • Revision ID: jelmer@samba.org-20091112225755-rpuefjvnpippdeuk
Add some more basic tests for the repository API.

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
    for name, vcs in foreign.foreign_vcs_registry.iteritems():
31
31
        scenarios.append((vcs.__class__.__name__, {
32
32
            "branch_factory": vcs.branch_format.get_foreign_tests_branch_factory(),
 
33
            "repository_factory": vcs.repository_format.get_foreign_tests_repository_factory(),
33
34
            "branch_format": vcs.branch_format,
34
35
            "repository_format": vcs.repository_format,
35
36
            }))