mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-30 16:21:49 +07:00
IJ-CR-108358 GitOrigin-RevId: 878499400f343565f1bf1fd1f75133c09a5ea0e0
11 lines
122 B
Python
11 lines
122 B
Python
import pytest_asyncio
|
|
|
|
|
|
@pytest_asyncio.fixture
|
|
async def foo():
|
|
return 1
|
|
|
|
|
|
def test(f<caret>oo):
|
|
assert foo == 1
|