7 lines
114 B
Ruby
Executable File
7 lines
114 B
Ruby
Executable File
#!/usr/bin/env ruby
|
|
|
|
Dir["**/test_*.rb"].each { |f|
|
|
next if f.include?("stash/")
|
|
require_relative "../#{f}"
|
|
}
|