pyo3/examples/decorator/tests/example.py

15 lines
156 B
Python

from decorator import Counter
@Counter
def say_hello():
print("hello")
say_hello()
say_hello()
say_hello()
say_hello()
assert say_hello.count == 4