Sha256: 498aa87791d45d4c7b21cc94386cc1034a2a3a90248777c5976a4af36c712e2c
Contents?: true
Size: 1.06 KB
Versions: 2
Compression:
Stored size: 1.06 KB
Contents
# # testing ruote # # since Mon Oct 9 22:19:44 JST 2006 # def l (t) if ARGV.include?('--split') _v = ARGV.include?('-v') ? ' -v' : ' ' puts puts "=== #{t} :" puts `ruby#{_v} #{t} #{ARGV.join(' ')}` es = $?.exitstatus es = es.nil? ? 66 : es.to_s.to_i exit(es) if es != 0 else load(t) end end unless RUBY_PLATFORM.match(/mswin|mingw/) # # sorry but no more than 1 worker on windows ! # # so no need to run those 2 workers tests # Dir.glob(File.join(File.dirname(__FILE__), 'ct_*.rb')).sort.each { |t| l(t) } # concurrence/collision tests, tests about 2+ instances of ruote colliding end Dir.glob(File.join(File.dirname(__FILE__), 'ft_*.rb')).sort.each { |t| l(t) } # functional tests targetting features rather than expressions Dir.glob(File.join(File.dirname(__FILE__), 'rt_*.rb')).sort.each { |t| l(t) } # restart tests, start sthing, stop engine, restart, expect thing to resume Dir.glob(File.join(File.dirname(__FILE__), 'eft_*.rb')).sort.each { |t| l(t) } # functional tests targetting specifing expressions
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
ruote-2.1.11 | test/functional/test.rb |
ruote-2.1.10 | test/functional/test.rb |