mirror of
https://github.com/github/rails.git
synced 2026-04-26 03:00:59 -04:00
8 lines
122 B
Ruby
Executable File
8 lines
122 B
Ruby
Executable File
#!/usr/bin/env ruby
|
|
|
|
|
|
ARGV.each do |arg|
|
|
Dir["#{Dir.pwd}/#{arg}/**/*_test.rb"].each do |file|
|
|
require file
|
|
end
|
|
end |