File size: 183 Bytes
7ea5134 | 1 2 3 4 5 6 7 8 | from IPython.utils.syspathcontext import appended_to_syspath
import pytest
def test_append_deprecated():
with pytest.warns(DeprecationWarning):
appended_to_syspath(".")
|
7ea5134 | 1 2 3 4 5 6 7 8 | from IPython.utils.syspathcontext import appended_to_syspath
import pytest
def test_append_deprecated():
with pytest.warns(DeprecationWarning):
appended_to_syspath(".")
|