1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Temporary runner

This commit is contained in:
Yehuda Katz 2009-03-20 15:02:12 -07:00
parent d1256f71d6
commit dc96ba8043

8
actionpack/test/runner Executable file
View file

@ -0,0 +1,8 @@
#!/usr/bin/env ruby
ARGV.each do |arg|
Dir["#{Dir.pwd}/#{arg}/**/*_test.rb"].each do |file|
require file
end
end