mirror of
https://github.com/markqvist/rnsh
synced 2026-08-12 18:35:09 -04:00
9 lines
270 B
Python
9 lines
270 B
Python
|
|
import pytest
|
||
|
|
import rnsh.exception as exception
|
||
|
|
|
||
|
|
def test_permit():
|
||
|
|
with pytest.raises(SystemExit):
|
||
|
|
with exception.permit(SystemExit):
|
||
|
|
raise Exception("Should not bubble")
|
||
|
|
with exception.permit(SystemExit):
|
||
|
|
raise SystemExit()
|