Mobilizon-Reshare-condividi.../tests/test_models.py

15 lines
261 B
Python

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):
...