rubyx/test/fragments/test_hello.rb
Torsten Ruger e3577d18af fix that silly mistake that made the percentage plummet
mostly due to the fact that object is a hash now,
not array. Took a while though
2015-07-21 19:41:30 +03:00

14 lines
206 B
Ruby

require_relative 'helper'
class TestHello < MiniTest::Test
include Fragments
def test_hello
@string_input = <<HERE
"Hello Raisa, I am salama".putstring()
HERE
@expect = []
check
end
end