diff options
Diffstat (limited to 'xml/test/test_prop2.py')
-rw-r--r-- | xml/test/test_prop2.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/xml/test/test_prop2.py b/xml/test/test_prop2.py new file mode 100644 index 0000000..d78dbea --- /dev/null +++ b/xml/test/test_prop2.py @@ -0,0 +1,6 @@ +def read_from_register(ctx, value): + return ctx.get_property('/test/prop3') / 2 + +def write_to_register(ctx, value): + ctx.set_property(value*2, '/test/prop3') + |