summaryrefslogtreecommitdiff
path: root/tests/test_runner_deprecation_app/tests.py
blob: 24d716f2bb62d8afab057be926796a61d650a7d7 (plain)
1
2
3
4
5
6
7
8
9
import warnings

from django.test import TestCase

warnings.warn("module-level warning from deprecation_app", DeprecationWarning)

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