rubyx/stash/soml/fragments/test_word.rb
2016-12-08 19:39:16 +02:00

26 lines
317 B
Ruby

require_relative 'helper'
module Typed
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