save some to_s code

This commit is contained in:
Torsten Ruger
2015-11-08 14:30:42 +02:00
parent cf05e7553a
commit 6ea698d397
3 changed files with 50 additions and 91 deletions

15
test/parfait/test_puti.rb Normal file
View File

@ -0,0 +1,15 @@
require_relative 'helper'
class TestPutiRT < MiniTest::Test
include RuntimeTests
def test_puti
@string_input = <<HERE
5.puts()
HERE
@stdout = "5"
check
end
end