instiki/test/all_tests.rb

10 lines
175 B
Ruby
Raw Normal View History

require 'test_helper'
require 'find'
test_root = File.dirname(__FILE__)
Find.find(test_root) { |path|
if File.file?(path) and path =~ /.*_test\.rb$/
2005-03-31 06:44:10 +02:00
load path
end
}