GodsDevProject commited on
Commit
83ca35e
·
verified ·
1 Parent(s): 3576281

Create tests/test_core.py

Browse files
Files changed (1) hide show
  1. tests/test_core.py +5 -0
tests/test_core.py ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ from core.search import search_docs
2
+
3
+ def test_search_returns_list():
4
+ res = search_docs("test")
5
+ assert isinstance(res, list)