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 e370f75 commit 6aec34bCopy full SHA for 6aec34b
test/unit/test_projects.py
@@ -211,6 +211,9 @@ def test_already_exists() -> None:
211
with pytest.raises(exceptions.ObjectAlreadyExists):
212
projects.Project.create(endpoint=tutil.SQ, key=tutil.EXISTING_PROJECT, name="name")
213
214
+def test_exists() -> None:
215
+ assert projects.exists(tutil.SQ, tutil.LIVE_PROJECT)
216
+ assert not projects.exists(tutil.SQ, "non-existing")
217
218
def test_binding() -> None:
219
"""test_binding"""
0 commit comments