~ubuntu-branches/ubuntu/lucid/bzr/lucid-proposed

« back to all changes in this revision

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

  • Committer: Bazaar Package Importer
  • Author(s): Jeff Bailey
  • Date: 2006-03-20 08:31:00 UTC
  • mfrom: (1.1.2 upstream)
  • mto: This revision was merged to the branch mainline in revision 4.
  • Revision ID: james.westby@ubuntu.com-20060320083100-ovdi2ssuw0epcx8s
Tags: 0.8~200603200831-0ubuntu1
* Snapshot uploaded to Dapper at Martin Pool's request.

* Disable testsuite for upload.  Fakeroot and the testsuite don't
  play along.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright (C) 2006 by Canonical Ltd
 
2
# Authors: Robert Collins <robert.collins@canonical.com>
 
3
# -*- coding: utf-8 -*-
 
4
 
 
5
# This program is free software; you can redistribute it and/or modify
 
6
# it under the terms of the GNU General Public License as published by
 
7
# the Free Software Foundation; either version 2 of the License, or
 
8
# (at your option) any later version.
 
9
 
 
10
# This program is distributed in the hope that it will be useful,
 
11
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
13
# GNU General Public License for more details.
 
14
 
 
15
# You should have received a copy of the GNU General Public License
 
16
# along with this program; if not, write to the Free Software
 
17
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
18
 
 
19
 
 
20
"""BzrDir implementation tests for bzr.
 
21
 
 
22
These test the conformance of all the repository variations to the expected API.
 
23
Specific tests for individual formats are in the tests/test_repository.py file 
 
24
rather than in tests/branch_implementations/*.py.
 
25
"""
 
26
 
 
27
from bzrlib.repository import (_legacy_formats,
 
28
                               RepositoryFormat,
 
29
                               RepositoryTestProviderAdapter,
 
30
                               )
 
31
                            
 
32
from bzrlib.tests import (
 
33
                          adapt_modules,
 
34
                          default_transport,
 
35
                          TestLoader,
 
36
                          TestSuite,
 
37
                          )
 
38
 
 
39
 
 
40
def test_suite():
 
41
    result = TestSuite()
 
42
    test_repository_implementations = [
 
43
        'bzrlib.tests.repository_implementations.test_fileid_involved',
 
44
        'bzrlib.tests.repository_implementations.test_reconcile',
 
45
        'bzrlib.tests.repository_implementations.test_repository',
 
46
        ]
 
47
    adapter = RepositoryTestProviderAdapter(
 
48
        default_transport,
 
49
        # None here will cause a readonly decorator to be created
 
50
        # by the TestCaseWithTransport.get_readonly_transport method.
 
51
        None,
 
52
        [(format, format._matchingbzrdir) for format in 
 
53
         RepositoryFormat._formats.values() + _legacy_formats])
 
54
    loader = TestLoader()
 
55
    adapt_modules(test_repository_implementations, adapter, loader, result)
 
56
    return result