rubyx/test/parfait/test_puti.rb

16 lines
182 B
Ruby
Raw Normal View History

2015-11-08 13:30:42 +01:00
require_relative 'helper'
class TestPutiRT < MiniTest::Test
include RuntimeTests
def test_puti
@string_input = <<HERE
5.puts()
HERE
@stdout = "5"
check
end
end