deprecating ruby package

to be replaced by vool and mom
This commit is contained in:
Torsten Ruger
2017-08-31 16:18:59 +03:00
parent 0b161ffa06
commit 112ec26bd1
28 changed files with 7 additions and 6 deletions

View File

@ -0,0 +1,30 @@
require_relative 'helper'
module Rubyx
class TestManyCalls < MiniTest::Test
include RubyxTests
def pest_ruby_calls_looping
@string_input = <<HERE
def fibo_r( n )
if( n < 2 )
return n
else
return fibo_r(n - 1) + fibo_r(n - 2)
end
end
counter = 1000
while(counter > 0) do
fibo_r(20)
counter -= 1
end
HERE
@length = 37
@stdout = ""
check
end
end
end