rubyx/test/mains/test_new.rb
Torsten Ruger 8d3a1954fa close #21
Mostly replaced Fixnum with integer
also in the rx-file dependency
all travis and testing with 2.4+
2019-02-07 18:24:35 +02:00

19 lines
422 B
Ruby

require_relative 'helper'
module Mains
class TestNew < MiniTest::Test
include Risc::Ticker
def setup
@string_input = as_main("a = 1011 ; while(a>0) ; a = a - 1 ; end ; return a")
super
end
def test_chain # max 1011 iterations on 1014 integers (1024 - 10 reserve)
run_all
assert_equal ::Integer , get_return.class , " "
assert_equal 0 , get_return , " "
end
end
end