aboutsummaryrefslogtreecommitdiff
path: root/test cases/python/9 extmodule limited api/test_limited.py
blob: fcbf67b536e1490c74ad56863025ce21af9aa971 (plain)
1
2
3
4
5
6
from limited import hello

def test_hello():
    assert hello() == "hello world"

test_hello()