diff options
Diffstat (limited to 'third_party/rust/uniffi-example-sprites/tests/bindings/test_sprites.py')
-rw-r--r-- | third_party/rust/uniffi-example-sprites/tests/bindings/test_sprites.py | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/third_party/rust/uniffi-example-sprites/tests/bindings/test_sprites.py b/third_party/rust/uniffi-example-sprites/tests/bindings/test_sprites.py new file mode 100644 index 0000000000..5142c2fc42 --- /dev/null +++ b/third_party/rust/uniffi-example-sprites/tests/bindings/test_sprites.py @@ -0,0 +1,17 @@ +from sprites import * + +sempty = Sprite(None) +assert sempty.get_position() == Point(0, 0) + +s = Sprite(Point(0, 1)) +assert s.get_position() == Point(0, 1) + +s.move_to(Point(1, 2)) +assert s.get_position() == Point(1, 2) + +s.move_by(Vector(-4, 2)) +assert s.get_position() == Point(-3, 4) + +srel = Sprite.new_relative_to(Point(0, 1), Vector(1, 1.5)) +assert srel.get_position() == Point(1, 2.5) + |