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 b7867a0 commit 7706742Copy full SHA for 7706742
tests/integration/test_ontology.py
@@ -6,6 +6,13 @@
6
import time
7
8
9
+def test_is_feature_schema_archived(client, ontology):
10
+ feature_schema_to_check = ontology.normalized['tools'][0]
11
+ result = client.is_feature_schema_archived(
12
+ ontology.uid, feature_schema_to_check['featureSchemaId'])
13
+ assert result == False
14
+
15
16
def test_delete_tool_feature_from_ontology(client, ontology):
17
feature_schema_to_delete = ontology.normalized['tools'][0]
18
assert len(ontology.normalized['tools']) == 2
0 commit comments