8c07e388cd
Co-authored-by: Néstor Pérez <25409753+prryplatypus@users.noreply.github.com>
10 lines
212 B
Python
10 lines
212 B
Python
import pytest
|
|
|
|
from sanic.log import deprecation
|
|
|
|
|
|
def test_deprecation():
|
|
message = r"\[DEPRECATION v9\.9\] hello"
|
|
with pytest.warns(DeprecationWarning, match=message):
|
|
deprecation("hello", 9.9)
|