mirror of
https://github.com/Tech-Workers-Coalition-Italia/mobilizon-reshare.git
synced 2025-02-17 04:00:39 +01:00
15 lines
261 B
Python
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):
|
||
|
...
|