getting to where where the puts should be, but it aint there

This commit is contained in:
Torsten Ruger
2014-08-22 10:21:12 +03:00
parent b305a56576
commit e19b7be111
7 changed files with 43 additions and 19 deletions

View File

@ -22,12 +22,21 @@ HERE
check
end
def test_puts_string
def ttest_puts_string
@string_input = <<HERE
def foo()
puts("Hello")
end
foo()
HERE
check
end
def test_string_put
@string_input = <<HERE
def foo()
"Hello".puts()
end
HERE
check
end