fix putstring file descriptor

This commit is contained in:
Torsten Ruger
2015-07-02 09:49:52 +03:00
parent 11997ef354
commit 3195d800e9
4 changed files with 16 additions and 13 deletions

View File

@ -24,18 +24,16 @@ HERE
check
end
def test_puts_string
def ttest_puts_string
@string_input = <<HERE
putstring("Hello")
HERE
check
end
def ttest_string_put
def test_string_put
@string_input = <<HERE
def foo()
"Hello".puts()
end
"Hello".putstring()
HERE
check
end