Lines Matching refs:excinfo
17 with pytest.raises(TypeError) as excinfo:
19 assert msg(excinfo.value) == "m.class_.NoConstructor: No constructor defined!"
156 with pytest.raises(TypeError) as excinfo:
159 msg(excinfo.value)
168 with pytest.raises(TypeError) as excinfo:
170 assert "No constructor defined!" in str(excinfo.value)
219 with pytest.raises(RuntimeError) as excinfo:
224 str(excinfo.value),
227 with pytest.raises(RuntimeError) as excinfo:
232 str(excinfo.value),
359 with pytest.raises(TypeError) as excinfo:
362 msg(excinfo.value)