File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
terminusdb_client/tests/integration_tests Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -92,6 +92,7 @@ def test_happy_crazy_path(docker_url):
9292 assert client .db is None
9393 assert "test happy path" not in client .list_databases ()
9494
95+
9596def test_add_get_remove_org (docker_url ):
9697 # create client
9798 client = Client (docker_url , user_agent = test_user_agent )
@@ -101,14 +102,14 @@ def test_add_get_remove_org(docker_url):
101102 assert client ._connected
102103 # test create db
103104 client .create_organization ("testOrg" )
104- print ("YOLOOO" )
105105 org = client .get_organization ("testOrg" )
106106 assert org ['name' ] == 'testOrg'
107107 client .delete_organization ("testOrg" )
108108 with pytest .raises (DatabaseError ):
109109 # The org shouldn't exist anymore
110110 client .get_organization ("testOrg" )
111111
112+
112113def test_add_get_remove_user (docker_url ):
113114 # create client
114115 client = Client (docker_url , user_agent = test_user_agent )
You can’t perform that action at this time.
0 commit comments