bzr branch
http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar
7321.2.1
by Jelmer Vernooij
Bundle the quilt plugin. |
1 |
# __init__.py -- Testsuite for quilt
|
2 |
# Copyright (C) 2019 Jelmer Vernooij <jelmer@jelmer.uk>
|
|
3 |
#
|
|
4 |
# Breezy is free software; you can redistribute it and/or modify
|
|
5 |
# it under the terms of the GNU General Public License as published by
|
|
6 |
# the Free Software Foundation; either version 2 of the License, or
|
|
7 |
# (at your option) any later version.
|
|
8 |
#
|
|
9 |
# Breezy is distributed in the hope that it will be useful,
|
|
10 |
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
11 |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
12 |
# GNU General Public License for more details.
|
|
13 |
#
|
|
14 |
# You should have received a copy of the GNU General Public License
|
|
15 |
# along with Breezy; if not, write to the Free Software
|
|
16 |
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
17 |
#
|
|
18 |
||
19 |
from .... import tests |
|
20 |
||
21 |
from ....tests import ( |
|
22 |
TestUtil, |
|
23 |
multiply_tests, |
|
24 |
TestCaseWithTransport, |
|
25 |
TestCaseInTempDir, |
|
26 |
)
|
|
27 |
||
28 |
||
29 |
def load_tests(loader, basic_tests, pattern): |
|
30 |
testmod_names = [ |
|
7321.2.3
by Jelmer Vernooij
Fix flake8 errors. |
31 |
'test_merge', |
32 |
'test_wrapper', |
|
33 |
]
|
|
7321.2.1
by Jelmer Vernooij
Bundle the quilt plugin. |
34 |
basic_tests.addTest(loader.loadTestsFromModuleNames( |
35 |
["%s.%s" % (__name__, i) for i in testmod_names])) |
|
36 |
||
37 |
return basic_tests |