rubyx/test/register/test_positioning.rb

28 lines
696 B
Ruby
Raw Normal View History

2015-07-19 09:54:36 +02:00
require_relative "../helper"
class TestPositioning < MiniTest::Test
2015-10-16 16:13:08 +02:00
def setup
2015-10-22 17:16:29 +02:00
Register.machine.boot unless Register.machine.booted
2015-10-16 16:13:08 +02:00
end
2015-07-19 09:54:36 +02:00
def test_list1
list = Parfait.new_list([1])
list.set_type( Parfait::Type.new Object)
assert_equal 32 , list.padded_length
2015-07-19 09:54:36 +02:00
end
def test_list5
list = Parfait.new_list([1,2,3,4,5])
list.set_type( Parfait::Type.new Object)
assert_equal 32 , list.padded_length
2015-07-19 09:54:36 +02:00
end
def test_type
type = Parfait::Type.new Object
type.set_type( Parfait::Type.new Object)
type.push 5
assert_equal 32 , type.padded_length
2015-07-19 09:54:36 +02:00
end
2015-11-03 15:21:50 +01:00
def test_word
word = Parfait::Word.new(12)
assert_equal 32 , word.padded_length
2015-11-03 15:21:50 +01:00
end
2015-07-19 09:54:36 +02:00
end