rubyx/test/fragments/test_putint.rb

14 lines
181 B
Ruby
Raw Normal View History

2014-05-21 21:16:19 +02:00
require_relative 'helper'
class TestPutint < MiniTest::Test
include Fragments
2015-09-20 15:52:26 +02:00
def test_putint
2014-05-21 21:16:19 +02:00
@string_input = <<HERE
2014-06-07 22:22:32 +02:00
42.putint()
2014-05-21 21:16:19 +02:00
HERE
2015-09-20 15:52:26 +02:00
@expect = []
check
2014-05-21 21:16:19 +02:00
end
end