10 lines
175 B
Ruby
Executable file
10 lines
175 B
Ruby
Executable file
require 'test_helper'
|
|
require 'find'
|
|
|
|
test_root = File.dirname(__FILE__)
|
|
Find.find(test_root) { |path|
|
|
if File.file?(path) and path =~ /.*_test\.rb$/
|
|
load path
|
|
end
|
|
}
|