rubyx/test/fragments/test_foo.rb

21 lines
413 B
Ruby
Raw Normal View History

2014-05-21 20:37:04 +02:00
require_relative 'helper'
class TestFoo < MiniTest::Test
include Fragments
def test_foo
@string_input = <<HERE
def foo(x)
a = 5
end
foo( 3 )
2014-05-21 20:37:04 +02:00
HERE
@should = [0x0,0x40,0x2d,0xe9,0x5,0x20,0xa0,0xe3,0x2,0x70,0xa0,0xe1,0x0,0x80,0xbd,0xe8,0x0,0x40,0x2d,0xe9,0x5,0x20,0xa0,0xe3,0x2,0x70,0xa0,0xe1,0x0,0x80,0xbd,0xe8]
@output = ""
2014-05-21 20:37:04 +02:00
parse
@target = [:Object , :foo]
2014-05-21 20:37:04 +02:00
write "foo"
end
end