stop including positioned

This commit is contained in:
Torsten Ruger
2017-01-01 21:52:35 +02:00
parent fafcd15ce8
commit cd474f66f6
4 changed files with 6 additions and 9 deletions

View File

@ -1,9 +1,5 @@
require_relative "../helper"
class TestPosition
include Positioned
end
class TestPositioning < MiniTest::Test
def setup
Register.machine.boot unless Register.machine.booted
@ -38,4 +34,9 @@ class TestPositioning < MiniTest::Test
test.set_position 12000
end
end
def test_pos_arm
mov = Arm::ArmMachine.mov :r1, 128
mov.set_position(0)
end
end