waf/playground/genpybind/example_test.py

10 lines
212 B
Python
Raw Normal View History

2019-07-02 11:50:25 +02:00
import pyexample as m
def test_example():
obj = m.Example()
obj.something = 42
assert obj.something == 42
assert obj.calculate() == 47 # with default argument
assert obj.calculate(2) == 44