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.
25 lines
511 B
25 lines
511 B
14 years ago
|
# -*- coding: utf-8 -*-
|
||
|
"""
|
||
|
flask.testsuite.deprecations
|
||
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||
|
|
||
|
Tests deprecation support.
|
||
|
|
||
11 years ago
|
:copyright: (c) 2014 by Armin Ronacher.
|
||
14 years ago
|
:license: BSD, see LICENSE for more details.
|
||
|
"""
|
||
14 years ago
|
|
||
14 years ago
|
import flask
|
||
|
import unittest
|
||
|
from flask.testsuite import FlaskTestCase, catch_warnings
|
||
|
|
||
|
|
||
|
class DeprecationsTestCase(FlaskTestCase):
|
||
12 years ago
|
"""not used currently"""
|
||
14 years ago
|
|
||
|
|
||
|
def suite():
|
||
|
suite = unittest.TestSuite()
|
||
|
suite.addTest(unittest.makeSuite(DeprecationsTestCase))
|
||
|
return suite
|