summaryrefslogtreecommitdiffstats
path: root/third_party/rust/uniffi-example-sprites/tests/bindings/test_sprites.rb
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/rust/uniffi-example-sprites/tests/bindings/test_sprites.rb')
-rw-r--r--third_party/rust/uniffi-example-sprites/tests/bindings/test_sprites.rb22
1 files changed, 0 insertions, 22 deletions
diff --git a/third_party/rust/uniffi-example-sprites/tests/bindings/test_sprites.rb b/third_party/rust/uniffi-example-sprites/tests/bindings/test_sprites.rb
deleted file mode 100644
index fa73043979..0000000000
--- a/third_party/rust/uniffi-example-sprites/tests/bindings/test_sprites.rb
+++ /dev/null
@@ -1,22 +0,0 @@
-# frozen_string_literal: true
-
-require 'test/unit'
-require 'sprites'
-
-include Test::Unit::Assertions
-include Sprites
-
-sempty = Sprite.new(nil)
-assert_equal sempty.get_position, Point.new(x: 0, y: 0)
-
-s = Sprite.new(Point.new(x: 0, y: 1))
-assert_equal s.get_position, Point.new(x: 0, y: 1)
-
-s.move_to(Point.new(x: 1, y: 2))
-assert_equal s.get_position, Point.new(x: 1, y: 2)
-
-s.move_by(Vector.new(dx: -4, dy: 2))
-assert_equal s.get_position, Point.new(x: -3, y: 4)
-
-srel = Sprite.new_relative_to(Point.new(x: 0, y: 1), Vector.new(dx: 1, dy: 1.5))
-assert_equal srel.get_position, Point.new(x: 1, y: 2.5)