tests: Add test for exception-chaining raise syntax.
This commit is contained in:
parent
2ff2ea5f3b
commit
ab2594e341
2 changed files with 8 additions and 0 deletions
6
tests/basics/exception_chain.py
Normal file
6
tests/basics/exception_chain.py
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
# Exception chaining is not supported, but check that basic
|
||||
# exception works as expected.
|
||||
try:
|
||||
raise Exception from None
|
||||
except Exception:
|
||||
print("Caught Exception")
|
||||
2
tests/basics/exception_chain.py.exp
Normal file
2
tests/basics/exception_chain.py.exp
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
Caught Exception
|
||||
Warning: exception chaining not supported
|
||||
Loading…
Reference in a new issue