rubyx/test/compiler/fragments/test_word.rb
Torsten Ruger f11e8f0a13 fix all the test
many are off course affected by call sequence changes
2015-11-07 22:20:21 +02:00

24 lines
299 B
Ruby

require_relative 'helper'
class TestWord < MiniTest::Test
include Fragments
def test_hello
@string_input = <<HERE
class Object
Word self.new()
return nil
end
end
class Object
int main()
Word w = Word.new()
end
end
HERE
@length = 34
@stdout = ""
check
end
end