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
|
2015-10-06 00:27:13 +03:00
|
|
|
int main()
|
|
|
|
42.putint()
|
|
|
|
end
|
|
|
|
end
|
2014-05-21 22:16:19 +03:00
|
|
|
HERE
|
2015-11-07 22:20:21 +02:00
|
|
|
@length = 32
|
2015-09-20 16:52:26 +03:00
|
|
|
check
|
2014-05-21 22:16:19 +03:00
|
|
|
end
|
|
|
|
end
|