rubyx/stash/fragments/test_many_itos.rb
Torsten Ruger 28ae1de59f cleaning out stash
most of the stuff is now reimplemented
fragments still open (as interpreter is not working yet)
2018-03-19 16:25:27 +05:30

23 lines
373 B
Ruby

require_relative 'helper'
module Rubyx
class TestManyItos < MiniTest::Test
include RubyxTests
def pest_ruby_itos_looping
@string_input = <<HERE
counter = 100000
while(counter > 0) do
str = counter.to_s
counter = counter - 1
end
str
HERE
@length = 37
@stdout = "Hello Raisa, I am rubyx"
check
end
end
end