2013-01-03 08:00:39 +08:00
|
|
|
import warnings
|
|
|
|
|
|
|
|
from django.test import TestCase
|
2014-03-08 18:13:45 +08:00
|
|
|
from django.utils.deprecation import RemovedInNextVersionWarning
|
2013-01-03 08:00:39 +08:00
|
|
|
|
2014-03-08 18:13:45 +08:00
|
|
|
warnings.warn("module-level warning from deprecation_app", RemovedInNextVersionWarning)
|
2013-03-25 12:34:46 +08:00
|
|
|
|
2013-11-03 05:34:05 +08:00
|
|
|
|
2013-01-03 08:00:39 +08:00
|
|
|
class DummyTest(TestCase):
|
|
|
|
def test_warn(self):
|
2014-03-08 18:13:45 +08:00
|
|
|
warnings.warn("warning from test", RemovedInNextVersionWarning)
|