rubyx/test/compiler/fragments/test_class.rb

20 lines
282 B
Ruby
Raw Normal View History

2015-09-27 19:28:34 +02:00
require_relative 'helper'
class TestBasicClass < MiniTest::Test
include Fragments
def test_class_basic
@string_input = <<HERE
class Bar
int buh()
return 1
2015-09-27 19:28:34 +02:00
end
end
HERE
@expect = [ [SaveReturn] ,[RegisterTransfer,GetSlot,FunctionReturn]]
2015-09-27 19:28:34 +02:00
check
end
end