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 16:20:39 +02:00
class Space
int main()
2017-08-29 18:38:51 +03:00
"Hello Raisa, I am rubyx".putstring()
end
end
HERE
2015-11-16 18:02:13 +02:00
@length = 37
2017-08-29 18:38:51 +03:00
@stdout = "Hello Raisa, I am rubyx"
check
end
end