aboutsummaryrefslogtreecommitdiff
path: root/tests/micropython/decorator_error.py
blob: c7da3119f4a065dee354b713f5df3af2f715df17 (plain)
1
2
3
4
5
6
7
8
9
10
11
# test syntax errors for uPy-specific decorators

def test_syntax(code):
    try:
        exec(code)
    except SyntaxError:
        print("SyntaxError")

# invalid micropython decorators
test_syntax("@micropython.a\ndef f(): pass")
test_syntax("@micropython.a.b\ndef f(): pass")