summaryrefslogtreecommitdiff
path: root/tests/test_runner_deprecation_app/tests.py
blob: 0d947c35c21b3239f4d20a797f709237eaf0ece0 (plain)
1
2
3
4
5
6
7
8
9
10
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)