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

[merge] bzr.dev 1896

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
# Copyright (C) 2005, 2006 by Canonical Ltd
2
 
 
 
2
#
3
3
# This program is free software; you can redistribute it and/or modify
4
4
# it under the terms of the GNU General Public License as published by
5
5
# the Free Software Foundation; either version 2 of the License, or
6
6
# (at your option) any later version.
7
 
 
 
7
#
8
8
# This program is distributed in the hope that it will be useful,
9
9
# but WITHOUT ANY WARRANTY; without even the implied warranty of
10
10
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11
11
# GNU General Public License for more details.
12
 
 
 
12
#
13
13
# You should have received a copy of the GNU General Public License
14
14
# along with this program; if not, write to the Free Software
15
15
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
109
109
    import bzrlib.tests.bzrdir_implementations
110
110
    import bzrlib.tests.interrepository_implementations
111
111
    import bzrlib.tests.interversionedfile_implementations
 
112
    import bzrlib.tests.intertree_implementations
112
113
    import bzrlib.tests.repository_implementations
113
114
    import bzrlib.tests.revisionstore_implementations
 
115
    import bzrlib.tests.tree_implementations
114
116
    import bzrlib.tests.workingtree_implementations
115
117
    return [
116
118
            bzrlib.doc,
119
121
            bzrlib.tests.bzrdir_implementations,
120
122
            bzrlib.tests.interrepository_implementations,
121
123
            bzrlib.tests.interversionedfile_implementations,
 
124
            bzrlib.tests.intertree_implementations,
122
125
            bzrlib.tests.repository_implementations,
123
126
            bzrlib.tests.revisionstore_implementations,
 
127
            bzrlib.tests.tree_implementations,
124
128
            bzrlib.tests.workingtree_implementations,
125
129
            ]
126
130
 
1258
1262
                   'bzrlib.tests.test_commit_merge',
1259
1263
                   'bzrlib.tests.test_config',
1260
1264
                   'bzrlib.tests.test_conflicts',
1261
 
                   'bzrlib.tests.test_delta',
1262
1265
                   'bzrlib.tests.test_decorators',
1263
1266
                   'bzrlib.tests.test_diff',
1264
1267
                   'bzrlib.tests.test_doc_generate',
1313
1316
                   'bzrlib.tests.test_transactions',
1314
1317
                   'bzrlib.tests.test_transform',
1315
1318
                   'bzrlib.tests.test_transport',
 
1319
                   'bzrlib.tests.test_tree',
1316
1320
                   'bzrlib.tests.test_tsort',
1317
1321
                   'bzrlib.tests.test_tuned_gzip',
1318
1322
                   'bzrlib.tests.test_ui',