📜  如何使用 pytest 测试是否引发了异常 - Python 代码示例

📅  最后修改于: 2022-03-11 14:47:24.735000             🧑  作者: Mango

代码示例1
# content of test_sysexit.py
import pytest


def f():
    raise SystemExit(1)


def test_mytest():
    with pytest.raises(SystemExit):
        f()