master
/ miniconda3 / lib / python3.11 / site-packages / toolz / tests / test_compatibility.py

test_compatibility.py @74036c5

41a0142
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
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)