mirror of https://github.com/mitsuhiko/flask.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
491 B
24 lines
491 B
# -*- 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
|
|
|