18 lines
531 B
Ruby
18 lines
531 B
Ruby
require_relative 'helper'
|
|
|
|
class TestHello < MiniTest::Test
|
|
include Fragments
|
|
|
|
def test_hello
|
|
@string_input = <<HERE
|
|
putstring( "Hello Raisa, I am crystal" )
|
|
HERE
|
|
@should = [0x0,0x40,0x2d,0xe9,0x1,0x0,0xa0,0xe3,0x4,0x70,0xa0,0xe3,0x0,0x0,0x0,0xef,0x0,0x70,0xa0,0xe1,0x0,0x80,0xbd,0xe8,0x0,0x40,0x2d,0xe9,0x1,0x0,0xa0,0xe3,0x4,0x70,0xa0,0xe3,0x0,0x0,0x0,0xef,0x0,0x70,0xa0,0xe1,0x0,0x80,0xbd,0xe8]
|
|
@output = "Hello Raisa, I am crystal "
|
|
@target = [:Object , :putstring]
|
|
parse
|
|
write "hello"
|
|
end
|
|
end
|
|
|