Skip to content

Commit 88bbb47

Browse files
committed
Updated tests
1 parent 8333035 commit 88bbb47

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

test/test_manual.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,12 @@ def tearDown(self):
2929

3030
async def test_manual(self):
3131
async with manticoresearch.ApiClient(self.configuration) as client:
32+
indexApi = manticoresearch.IndexApi(client)
33+
utilsApi = manticoresearch.UtilsApi(client)
34+
searchApi = manticoresearch.SearchApi(client)
35+
36+
await utilsApi.sql('query=DROP TABLE IF EXISTS movies')
37+
res = await utilsApi.sql("CREATE TABLE IF NOT EXISTS movies (title text, plot text, _year integer, rating float, code multi) min_infix_len='2'")
3238
pprint("Tests finished")
3339

3440
if __name__ == '__main__':

0 commit comments

Comments
 (0)