summaryrefslogtreecommitdiff
path: root/tests/test_runner/deprecation_app/tests.py
blob: e676c3e3d5761d5a385e71a9bfa7a829d1e1cf5c (plain)
1
2
3
4
5
6
7
8
9
import warnings

from django.test import TestCase

class DummyTest(TestCase):
    def test_warn(self):
        warnings.warn("warning from test", DeprecationWarning)