mirror of
https://github.com/aykhans/AzSuicideDataVisualization.git
synced 2025-04-22 10:28:02 +00:00
11 lines
261 B
Python
11 lines
261 B
Python
|
|
import pytest
|
|
import importlib
|
|
|
|
def test_compat_warn():
|
|
with pytest.warns(DeprecationWarning):
|
|
# something else is importing this,
|
|
import toolz.compatibility
|
|
# reload to be sure we warn
|
|
importlib.reload(toolz.compatibility)
|