Started with kahoot-import

This commit is contained in:
Mawoka
2022-03-08 16:43:18 +01:00
parent 9c416b020f
commit 449f227ecc
5 changed files with 130 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
from unittest import IsolatedAsyncioTestCase
from get import get
class Test(IsolatedAsyncioTestCase):
async def test_get(self):
res = await get(query="Python")
self.assertEqual(len(res.entities), 9)
await get(query="Test Quiz")
await get(query="Biologie")
await get(query="Chemie")