rubyx/stash/soml/fragments/test_putint.rb

23 lines
272 B
Ruby
Raw Normal View History

2014-05-21 22:16:19 +03:00
require_relative 'helper'
class TestPutint < MiniTest::Test
include Fragments
2015-09-20 16:52:26 +03:00
def test_putint
2014-05-21 22:16:19 +03:00
@string_input = <<HERE
2015-10-14 15:08:42 +03:00
class Integer
int putint()
return 1
end
end
2015-11-30 16:20:39 +02:00
class Space
int main()
42.putint()
end
end
2014-05-21 22:16:19 +03:00
HERE
@length = 32
2015-09-20 16:52:26 +03:00
check
2014-05-21 22:16:19 +03:00
end
end