We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a69fecf commit d522c18Copy full SHA for d522c18
tests/table/test_table_exists.py
@@ -0,0 +1,18 @@
1
+import asyncio
2
+from unittest import TestCase
3
+
4
+from ..example_project.tables import Pokemon
5
6
7
+class TestTableExists(TestCase):
8
9
+ def setUp(self):
10
+ asyncio.run(Pokemon.create().execute())
11
12
+ def test_table_exists(self):
13
+ breakpoint()
14
+ response = asyncio.run(Pokemon.table_exists().execute())
15
+ self.assertTrue(response is True)
16
17
+ def tearDown(self):
18
+ asyncio.run(Pokemon.drop().execute())
0 commit comments