django/tests/regressiontests/test_runner/deprecation_app/tests.py

10 lines
168 B
Python
Raw Normal View History

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