rubyx/test/fragments/test_class.rb

22 lines
268 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
module Foo
class Bar
int buh()
return 1
end
end
end
HERE
@expect = [ Virtual::Return ]
check
end
end