add guard

This commit is contained in:
Torsten Ruger
2015-08-08 18:08:15 +03:00
parent ca14ef8914
commit 0a54d030b5
6 changed files with 94 additions and 7 deletions

View File

@ -3,7 +3,7 @@ require_relative 'helper'
class TestList < MiniTest::Test
include Fragments
def test_list_clas
def ttest_list_clas
@string_input = <<HERE
class Object
end

View File

@ -3,14 +3,14 @@ require_relative 'helper'
class TestPutint < MiniTest::Test
include Fragments
def test_putint
def ttest_putint
@string_input = <<HERE
42.putint()
HERE
@should = [0x0,0x40,0x2d,0xe9,0x2,0x30,0xa0,0xe1,0x78,0x20,0x8f,0xe2,0x9,0x20,0x82,0xe2,0xe2,0xff,0xff,0xeb,0x6c,0x20,0x8f,0xe2,0xc,0x30,0xa0,0xe3,0x1,0x0,0xa0,0xe3,0x2,0x10,0xa0,0xe1,0x3,0x20,0xa0,0xe1,0x4,0x70,0xa0,0xe3,0x0,0x0,0x0,0xef,0x0,0x80,0xbd,0xe8]
@output = " 42 "
@target = [:Object , :putint]
parse
parse
write "putint"
end
end

View File

@ -1,7 +1,7 @@
require_relative "compiler_helper"
#require_relative "compiler_helper"
class TestMachine < MiniTest::Test
include CompilerHelper
class TestMachine #< MiniTest::Test
#include CompilerHelper
def test_object
@string_input = <<HERE