rubyx/test/risc/test_padding.rb

21 lines
454 B
Ruby
Raw Normal View History

require_relative "../helper"
class TestPadding < MiniTest::Test
def test_small
[6,27,28].each do |p|
assert_equal 32 , Padding.padded(p) , "Expecting 32 for #{p}"
end
end
2015-06-28 09:50:47 +02:00
def test_medium
[29,33,40,57,60].each do |p|
assert_equal 64 , Padding.padded(p) , "Expecting 64 for #{p}"
end
end
2015-07-19 09:54:36 +02:00
def test_large
[61,65,88].each do |p|
assert_equal 96 , Padding.padded(p) , "Expecting 96 for #{p}"
2015-07-19 09:54:36 +02:00
end
end
end