rubyx/test/rubyx/test_execute.rb
Torsten Rüger f13e8b3bd7 A little work on test times
They have been rising of late, installer reporter to check 8and keep checking)
tweaking of cli parameters 
removed redundant interpreter tests
2019-09-18 13:36:29 +03:00

13 lines
298 B
Ruby

require_relative "helper"
require "rubyx/rubyxc"
module RubyX
class TestRubyXCliExecute < MiniTest::Test
def test_execute
assert_output(/Running/) {RubyXC.start(["execute" ,"--preload",
"--integers=50","--messages=50" , "test/mains/source/add__4.rb"])}
end
end
end