mirror of
https://github.com/Tencent/Metis.git
synced 2025-12-26 04:02:48 +00:00
11 lines
118 B
Python
11 lines
118 B
Python
import pytest
|
|
|
|
|
|
def f():
|
|
raise SystemExit(1)
|
|
|
|
|
|
def test_mytest():
|
|
with pytest.raises(SystemExit):
|
|
f()
|