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