7 lines
100 B
Python
7 lines
100 B
Python
import unittest
|
|
|
|
|
|
class Test(unittest.TestCase):
|
|
async def test_foo(self):
|
|
assert False
|