Temporary runner

This commit is contained in:
Yehuda Katz 2009-03-20 15:02:12 -07:00
parent d1256f71d6
commit dc96ba8043
1 changed files with 8 additions and 0 deletions

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