GodsDevProject's picture
Create tests/test_core.py
83ca35e verified
raw
history blame contribute delete
131 Bytes
from core.search import search_docs
def test_search_returns_list():
res = search_docs("test")
assert isinstance(res, list)