1
0
mirror of https://github.com/janeczku/calibre-web synced 2024-09-19 02:39:45 +00:00
calibre-web/vendor/werkzeug/testsuite/contrib/__init__.py
2016-04-27 17:47:31 +02:00

20 lines
425 B
Python

# -*- coding: utf-8 -*-
"""
werkzeug.testsuite.contrib
~~~~~~~~~~~~~~~~~~~~~~~~~~
Tests the contrib modules.
:copyright: (c) 2013 by Armin Ronacher.
:license: BSD, see LICENSE for more details.
"""
import unittest
from werkzeug.testsuite import iter_suites
def suite():
suite = unittest.TestSuite()
for other_suite in iter_suites(__name__):
suite.addTest(other_suite)
return suite