tests.py 330 Bytes
Newer Older
1 2 3
import warnings

from django.test import TestCase
4
from django.utils.deprecation import RemovedInNextVersionWarning
5

6
warnings.warn("module-level warning from deprecation_app", RemovedInNextVersionWarning)
7

Jason Myers's avatar
Jason Myers committed
8

9 10
class DummyTest(TestCase):
    def test_warn(self):
11
        warnings.warn("warning from test", RemovedInNextVersionWarning)