mirror of
https://github.com/django/django.git
synced 2025-11-25 05:04:26 +00:00
Fixed #35666 -- Documented stacklevel usage and testing, and adjusted test suite accordingly.
Over the years we've had multiple instances of hit and misses when emitting warnings: either setting the wrong stacklevel or not setting it at all. This work adds assertions for the existing warnings that were declaring the correct stacklevel, but were lacking tests for it.
This commit is contained in:
parent
39abd56a7f
commit
57307bbc7d
16 changed files with 84 additions and 39 deletions
|
|
@ -328,5 +328,6 @@ class ChoicesMetaDeprecationTests(SimpleTestCase):
|
|||
from django.db.models import enums
|
||||
|
||||
msg = "ChoicesMeta is deprecated in favor of ChoicesType."
|
||||
with self.assertWarnsMessage(RemovedInDjango60Warning, msg):
|
||||
with self.assertWarnsMessage(RemovedInDjango60Warning, msg) as ctx:
|
||||
enums.ChoicesMeta
|
||||
self.assertEqual(ctx.filename, __file__)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue