rubyx/stash/soml/fragments/test_hello.rb

19 lines
284 B
Ruby
Raw Normal View History

require_relative 'helper'
class TestHello < MiniTest::Test
include Fragments
def test_hello
@string_input = <<HERE
2015-11-30 15:20:39 +01:00
class Space
int main()
2017-08-29 17:38:51 +02:00
"Hello Raisa, I am rubyx".putstring()
end
end
HERE
2015-11-16 17:02:13 +01:00
@length = 37
2017-08-29 17:38:51 +02:00
@stdout = "Hello Raisa, I am rubyx"
check
end
end