rubyx/test/elf/test_somethingelse.rb
2018-06-25 20:21:15 +03:00

15 lines
279 B
Ruby

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