flask/tests/test_deprecations.py

25 lines
475 B
Python
Raw Normal View History

# -*- coding: utf-8 -*-
"""
2014-08-31 21:54:45 +02:00
tests.deprecations
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Tests deprecation support.
2014-01-02 19:21:07 +01:00
:copyright: (c) 2014 by Armin Ronacher.
:license: BSD, see LICENSE for more details.
"""
import flask
import unittest
2014-08-31 21:56:15 +02:00
from tests import TestFlask, catch_warnings
2014-08-31 21:56:15 +02:00
class TestDeprecations(TestFlask):
"""not used currently"""
def suite():
suite = unittest.TestSuite()
2014-08-31 21:56:15 +02:00
suite.addTest(unittest.makeSuite(TestDeprecations))
return suite