rubyx/test/compiler/statements/helper.rb
Torsten Ruger 6f856315d7 fix and test assign
also fix field def and
externalized assign
2015-10-15 13:08:53 +03:00

25 lines
692 B
Ruby

require_relative '../../helper'
module Statements
def check
machine = Virtual.machine
machine.boot unless machine.booted
machine.parse_and_compile @string_input
produced = Virtual.machine.space.get_main.source
assert @expect , "No output given"
assert_equal @expect.length , produced.blocks.length , "Block length"
produced.blocks.each_with_index do |b,i|
codes = @expect[i]
assert codes , "No codes for block #{i}"
assert_equal b.codes.length , codes.length , "Code length for block #{i+1}"
b.codes.each_with_index do |c , ii |
assert_equal codes[ii] , c.class , "Block #{i+1} , code #{ii+1}"
end
end
end
end