rubyx/test/compiler/fragments/test_hello.rb
Torsten Ruger dae12c532c fix fragment tests
they mostly got longer due to the added store instruction + label
2015-11-03 11:23:58 +02:00

19 lines
287 B
Ruby

require_relative 'helper'
class TestHello < MiniTest::Test
include Fragments
def test_hello
@string_input = <<HERE
class Object
int main()
"Hello Raisa, I am salama".putstring()
end
end
HERE
@length = 39
@stdout = "Hello Raisa, I am salama"
check
end
end