diff --git a/Examples/test-suite/python/director_property_runme.py b/Examples/test-suite/python/director_property_runme.py index 5d713c27f..dbbe23cb6 100644 --- a/Examples/test-suite/python/director_property_runme.py +++ b/Examples/test-suite/python/director_property_runme.py @@ -14,6 +14,12 @@ foo.setA("BLABLA") if foo.getA() != "BLABLA": raise RuntimeError +# test property addition in PyFoo +if foo.a != "BLABLA": + raise RuntimeError + foo.a = "BIBI" if foo.a != "BIBI": raise RuntimeError +if foo.getA() != "BIBI": + raise RuntimeError