Sha256: 88c0db7ea9682075509f2f6bc06b142737d69dc08f43e6d3a66866945dacf9fb

Contents?: true

Size: 376 Bytes

Versions: 4

Compression:

Stored size: 376 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

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

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
ruote-2.3.0.3 test/unit/test.rb
ruote-2.3.0.2 test/unit/test.rb
ruote-2.3.0.1 test/unit/test.rb
ruote-2.3.0 test/unit/test.rb