You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
425 B
Python
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
|