mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
(cherry picked from commit 202d5a6aadd282fb5144d16039e5661c22d567ec) GitOrigin-RevId: c290897d0eff63f4e4192d7368c272e9a4e73ba8
17 lines
197 B
Python
17 lines
197 B
Python
import pytest
|
|
|
|
|
|
class App:
|
|
def __init__(self):
|
|
d = []
|
|
self.result = d[100500]
|
|
|
|
|
|
@pytest.fixture(scope="module")
|
|
def app():
|
|
return App()
|
|
|
|
|
|
def test_app(app):
|
|
assert True
|