Made tests recognizable

This commit is contained in:
Markus Unterwaditzer 2014-08-31 21:54:45 +02:00
parent 3550b26071
commit 961db8ad72
16 changed files with 31 additions and 31 deletions

View file

@ -0,0 +1,24 @@
# -*- coding: utf-8 -*-
"""
tests.deprecations
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Tests deprecation support.
:copyright: (c) 2014 by Armin Ronacher.
:license: BSD, see LICENSE for more details.
"""
import flask
import unittest
from tests import FlaskTestCase, catch_warnings
class DeprecationsTestCase(FlaskTestCase):
"""not used currently"""
def suite():
suite = unittest.TestSuite()
suite.addTest(unittest.makeSuite(DeprecationsTestCase))
return suite