rubyx/test/fragments/test_hello.rb

14 lines
206 B
Ruby
Raw Normal View History

require_relative 'helper'
class TestHello < MiniTest::Test
include Fragments
def test_hello
@string_input = <<HERE
2014-07-29 17:33:11 +02:00
"Hello Raisa, I am salama".putstring()
HERE
@expect = []
check
end
end