rubyx/test/soml/fragments/test_word.rb
2015-11-30 16:20:39 +02:00

26 lines
316 B
Ruby

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