rubyx/test/elf/test_hello.rb
2018-06-23 15:58:43 +03:00

15 lines
260 B
Ruby

require_relative "helper"
module Elf
class HelloTest < FullTest
def test_string_put
hello = "Hello World!\n"
@input = "return '#{hello}'.putstring"
@stdout = hello
@exit_code = hello.length
check "hello"
end
end
end