rubyx/test/elf/test_hello.rb

15 lines
260 B
Ruby
Raw Normal View History

2018-06-23 14:58:43 +02:00
require_relative "helper"
2018-06-23 14:58:43 +02:00
module Elf
class HelloTest < FullTest
2018-06-23 14:58:43 +02:00
def test_string_put
hello = "Hello World!\n"
@input = "return '#{hello}'.putstring"
@stdout = hello
@exit_code = hello.length
check "hello"
end
end
end