Sha256: f644aef1b32804eb9677a5493d9e5e663a8bebde0cdd7a8c18357e6010b5acac

Contents?: true

Size: 199 Bytes

Versions: 32

Compression:

Stored size: 199 Bytes

Contents

#!/usr/local/bin/ruby -w

pat = "test_*.rb"
if File.basename(Dir.pwd) != "test" then
  $: << "test"
  pat = File.join("test", pat)
end

Dir.glob(pat).each do |f|
  require f
end

require 'test/unit'

Version data entries

32 entries across 30 versions & 2 rubygems

Version Path
ParseTree-1.3.2 test/test_all.rb
ParseTree-1.2.0 test/test_all.rb
ParseTree-1.3.4 test/test_all.rb
ParseTree-1.3.0 test/test_all.rb
ParseTree-1.3.6 test/test_all.rb
ParseTree-1.3.3 test/test_all.rb
ParseTree-1.3.5 test/test_all.rb
ParseTree-1.6.0 test/test_all.rb
ParseTree-1.6.3 test/test_all.rb
ParseTree-1.4.1 test/test_all.rb
ParseTree-1.6.1 test/test_all.rb
ParseTree-1.4.0 test/test_all.rb
ParseTree-1.5.0 test/test_all.rb
ParseTree-1.6.4 test/test_all.rb
ParseTree-1.6.2 test/test_all.rb
ParseTree-1.7.0 test/test_all.rb
ParseTree-1.3.7 test/test_all.rb
ParseTree-2.1.1 test/test_all.rb
ParseTree-2.0.2 test/test_all.rb
ParseTree-2.0.0 test/test_all.rb