rubyx/test/melon/fragments/test_hello.rb
2017-01-12 20:38:04 +02:00

16 lines
266 B
Ruby

require_relative 'helper'
module Melon
class TestRubyHello < MiniTest::Test
include MelonTests
def test_ruby_hello
@string_input = 'puts "Hello there"'
assert !check
# assert_equal "Hello there" , @interpreter.stdout
end
end
end