Sha256: 056f2cd78c3b14af0f80f4cd735ba701d6d45ddbe939188ef5b14c853fa67c67

Contents?: true

Size: 404 Bytes

Versions: 10

Compression:

Stored size: 404 Bytes

Contents

pers = ARGV.find { |a| a.match(/^--/) } || ''
tnumber = ARGV.find { |a| a.match(/^\d+/) } || 2

i = 0

puts `ruby -v`

loop do

  t = Dir["test/functional/ct_#{tnumber}_*.rb"].first

  raise "didn't find test..." unless t

  s = `ruby #{t} #{pers}`

  if $? != 0
    puts
    puts s
  else
    if (i % 5) == 0
      print i.to_s
    else
      print '.'
    end
    STDOUT.flush
  end

  i = i + 1
end

Version data entries

10 entries across 10 versions & 2 rubygems

Version Path
ruote-2.3.0.3 test/functional/crunner.rb
ruote-maestrodev-2.2.1 test/functional/crunner.rb
ruote-2.3.0.2 test/functional/crunner.rb
ruote-2.3.0.1 test/functional/crunner.rb
ruote-2.3.0 test/functional/crunner.rb
ruote-2.2.0 test/functional/crunner.rb
ruote-2.1.11 test/functional/crunner.rb
ruote-2.1.10 test/functional/crunner.rb
ruote-2.1.9 test/functional/crunner.rb
ruote-2.1.8 test/functional/crunner.rb