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 31276df commit 67cad68Copy full SHA for 67cad68
tests/integration/context_api_test.py
@@ -50,3 +50,10 @@ def test_context_remove(self):
50
ContextAPI.remove_context("test")
51
with pytest.raises(errors.ContextNotFound):
52
ContextAPI.inspect_context("test")
53
+
54
+ def test_load_context_without_orchestrator(self):
55
+ ContextAPI.create_context("test")
56
+ ctx = ContextAPI.get_context("test")
57
+ assert ctx
58
+ assert ctx.Name == "test"
59
+ assert ctx.Orchestrator is None
0 commit comments