15 lines
261 B
Python
Raw Normal View History

2021-05-02 16:51:54 +02:00
from tortoise.contrib import test
class TestSomething(test.TestCase):
async def test_something_async(self):
...
@test.skip("Skip this")
def test_skip(self):
...
@test.expectedFailure
def test_something(self):
...