rubyx/test/elf/test_somethingelse.rb

15 lines
279 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
2018-06-25 19:21:15 +02:00
class SomeOtherTest < FullTest
2018-06-23 14:58:43 +02:00
def test_string_put
hello = "Hello World!\n"
2018-06-25 19:21:15 +02:00
input = "return '#{hello}'.putstring"
2018-06-23 14:58:43 +02:00
@stdout = hello
@exit_code = hello.length
2018-06-25 19:21:15 +02:00
check as_main(input), "hello"
2018-06-23 14:58:43 +02:00
end
end
end