MCPcopy Create free account
hub / github.com/dask/dask / test_deprecated_version

Function test_deprecated_version

dask/tests/test_utils.py:824–830  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

822
823
824def test_deprecated_version():
825 @_deprecated(version="1.2.3")
826 def foo():
827 return "bar"
828
829 with pytest.warns(FutureWarning, match="deprecated in version 1.2.3"):
830 assert foo() == "bar"
831
832
833def test_deprecated_after_version():

Callers

nothing calls this directly

Calls 1

fooFunction · 0.70

Tested by

no test coverage detected