blob: 6dee0888ec53d35bae848153a590a7739d0ab04e [file] [log] [blame]
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)