예제 #1
0
def test_error_already_set(msg):
    from pybind11_tests import throw_already_set

    with pytest.raises(RuntimeError) as excinfo:
        throw_already_set(False)
    assert msg(excinfo.value) == "Unknown internal error occurred"

    with pytest.raises(ValueError) as excinfo:
        throw_already_set(True)
    assert msg(excinfo.value) == "foo"
예제 #2
0
def test_error_already_set(msg):
    from pybind11_tests import throw_already_set

    with pytest.raises(RuntimeError) as excinfo:
        throw_already_set(False)
    assert msg(excinfo.value) == "Unknown internal error occurred"

    with pytest.raises(ValueError) as excinfo:
        throw_already_set(True)
    assert msg(excinfo.value) == "foo"