circuitpython/tests/micropython/viper_error.py
Damien George 214179b430 tests: Add tests for SyntaxError, TypeError, and other missing things.
This is intended to improve coverage of the test suite.
2015-03-25 23:10:09 +00:00

12 lines
308 B
Python

# test syntax errors specific to viper code generation
def test_syntax(code):
try:
exec(code)
except SyntaxError:
print("SyntaxError")
# viper: annotations must be identifiers
test_syntax("@micropython.viper\ndef f(a:1): pass")
test_syntax("@micropython.viper\ndef f() -> 1: pass")