deprecating ruby package
to be replaced by vool and mom
This commit is contained in:
21
stash/test_rubyx/fragments/test_many_hello.rb
Normal file
21
stash/test_rubyx/fragments/test_many_hello.rb
Normal file
@ -0,0 +1,21 @@
|
||||
require_relative 'helper'
|
||||
|
||||
module Rubyx
|
||||
class TestManyHello < MiniTest::Test
|
||||
include RubyxTests
|
||||
|
||||
def pest_ruby_hello_looping
|
||||
@string_input = <<HERE
|
||||
counter = 100000;
|
||||
while(counter > 0) do
|
||||
puts "Hello there"
|
||||
STDOUT.flush
|
||||
counter = counter - 1
|
||||
end
|
||||
HERE
|
||||
@length = 37
|
||||
@stdout = "Hello there"
|
||||
check
|
||||
end
|
||||
end
|
||||
end
|
Reference in New Issue
Block a user