remove unused imports
[mygpo.git] / mygpo / api / tests.py
blob23f78e847a79d62c64bc6e5b124f47fa9571a856
2 # This file is part of my.gpodder.org.
4 # my.gpodder.org is free software: you can redistribute it and/or modify it
5 # under the terms of the GNU Affero General Public License as published by
6 # the Free Software Foundation, either version 3 of the License, or (at your
7 # option) any later version.
9 # my.gpodder.org is distributed in the hope that it will be useful, but
10 # WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
11 # or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public
12 # License for more details.
14 # You should have received a copy of the GNU Affero General Public License
15 # along with my.gpodder.org. If not, see <http://www.gnu.org/licenses/>.
19 import unittest
20 import doctest
22 from django.test import TestCase
24 from mygpo.api.opml import Importer, Exporter
25 from mygpo.test import create_auth_string
28 class LegacyAPITests(TestCase):
29 pass
31 def suite():
32 suite = unittest.TestSuite()
33 return suite