instiki/test/all_tests.rb

10 lines
213 B
Ruby
Raw Normal View History

2005-01-23 01:48:00 +01:00
require 'test_helper'
require 'find'
test_root = File.dirname(__FILE__)
Find.find(test_root) { |path|
if File.file?(path) and path =~ /.*_test\.rb$/
require path[(test_root.size + 1)..-4]
end
}