D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
proc
/
2
/
root
/
opt
/
imh-python
/
lib
/
python2.7
/
site-packages
/
werkzeug
/
testsuite
/
contrib
/
Filename :
__init__.py
back
Copy
# -*- coding: utf-8 -*- """ werkzeug.testsuite.contrib ~~~~~~~~~~~~~~~~~~~~~~~~~~ Tests the contrib modules. :copyright: (c) 2014 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