rubyx/test/fragments/test_putint.rb

14 lines
181 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
2014-06-07 23:22:32 +03:00
42.putint()
2014-05-21 22:16:19 +03:00
HERE
2015-09-20 16:52:26 +03:00
@expect = []
check
2014-05-21 22:16:19 +03:00
end
end