We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a612a2b commit c9d609bCopy full SHA for c9d609b
bindings/python/tests/test_operator_construction.py
@@ -24,3 +24,10 @@ def test_operator_new_with_path():
24
op = opendal.Operator("memory", root=Path("/tmp"))
25
assert op is not None
26
assert op.capability().read
27
+
28
29
+@pytest.mark.asyncio
30
+def test_async_operator_new_with_path():
31
+ op = opendal.AsyncOperator("memory", root=Path("/tmp"))
32
+ assert op is not None
33
+ assert op.capability().read
0 commit comments