introlix_api / tests /test_app.py
satyam998's picture
Initial commit
79d285f
raw
history blame contribute delete
243 Bytes
from introlix_api.app.appwrite import get_interests
def test_get_interests():
response = get_interests()
for interest in response:
print(interest['interest'])
print(interest['keywords'])
test_get_interests()