Skip to content

Commit 7706742

Browse files
committed
Added integration test
1 parent b7867a0 commit 7706742

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

tests/integration/test_ontology.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,13 @@
66
import time
77

88

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+
916
def test_delete_tool_feature_from_ontology(client, ontology):
1017
feature_schema_to_delete = ontology.normalized['tools'][0]
1118
assert len(ontology.normalized['tools']) == 2

0 commit comments

Comments
 (0)