rubyx/stash/test_rubyx/fragments/test_many_itos.rb
Torsten Ruger 112ec26bd1 deprecating ruby package
to be replaced by vool and mom
2017-08-31 16:18:59 +03:00

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