bd7022516d56fd82747d092c9a099713e2521c7e
[pyassuan.git] / pyassuan / test_server.py
1 # Copyright (C) 2018 W. Trevor King <wking@tremily.us>
2 #
3 # This file is part of pyassuan.
4 #
5 # pyassuan is free software: you can redistribute it and/or modify it under the
6 # terms of the GNU General Public License as published by the Free Software
7 # Foundation, either version 3 of the License, or (at your option) any later
8 # version.
9 #
10 # pyassuan is distributed in the hope that it will be useful, but WITHOUT ANY
11 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
12 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
13 #
14 # You should have received a copy of the GNU General Public License along with
15 # pyassuan.  If not, see <http://www.gnu.org/licenses/>.
16
17 import doctest
18 import unittest
19
20 from . import server
21
22
23 def load_tests(loader, tests, ignore):
24     tests.addTests(doctest.DocTestSuite(server))
25     return tests