2011-08-26 18:21:26 +08:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
"""
|
2014-09-01 03:54:45 +08:00
|
|
|
tests.deprecations
|
2011-08-26 18:21:26 +08:00
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
2014-09-04 02:56:10 +08:00
|
|
|
Tests deprecation support. Not used currently.
|
2011-08-26 18:21:26 +08:00
|
|
|
|
2014-01-03 02:21:07 +08:00
|
|
|
:copyright: (c) 2014 by Armin Ronacher.
|
2011-08-26 18:21:26 +08:00
|
|
|
:license: BSD, see LICENSE for more details.
|
|
|
|
"""
|
2011-09-02 00:35:04 +08:00
|
|
|
|
2011-08-26 18:21:26 +08:00
|
|
|
import flask
|
|
|
|
import unittest
|
2014-09-01 03:56:15 +08:00
|
|
|
from tests import TestFlask, catch_warnings
|