rubyx/test/melon/fragments/test_hello.rb

16 lines
266 B
Ruby
Raw Normal View History

require_relative 'helper'
module Melon
class TestRubyHello < MiniTest::Test
include MelonTests
def test_ruby_hello
2017-01-12 19:38:04 +01:00
@string_input = 'puts "Hello there"'
assert !check
# assert_equal "Hello there" , @interpreter.stdout
end
end
end