Sha256: 9fa4568ecc4a651da3d9b3b6b8c0de7e5190ce27ccf4ecc75b2fb218578f94d8

Contents?: true

Size: 510 Bytes

Versions: 7

Compression:

Stored size: 510 Bytes

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(' ')}`

    exit $?.exitstatus if $?.exitstatus != 0
  else
    load(t)
  end
end

load File.join(File.dirname(__FILE__), 'storage.rb')

Dir.glob(File.join(File.dirname(__FILE__), 'ut_*.rb')).sort.each { |t| l(t) }
Dir.glob(File.join(File.dirname(__FILE__), 'hut_*.rb')).sort.each { |t| l(t) }

Version data entries

7 entries across 7 versions & 2 rubygems

Version Path
ruote-maestrodev-2.2.1 test/unit/test.rb
ruote-2.2.0 test/unit/test.rb
ruote-2.1.11 test/unit/test.rb
ruote-2.1.10 test/unit/test.rb
ruote-2.1.9 test/unit/test.rb
ruote-2.1.8 test/unit/test.rb
ruote-2.1.7 test/unit/test.rb