add new rake task "test:rdm_routing" to run test/integration/routing/*_test.rb

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8330 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2011-12-24 00:00:56 +00:00
parent 23bafda164
commit ff1418e2d3
1 changed files with 7 additions and 0 deletions

View File

@ -88,4 +88,11 @@ namespace :test do
end
Rake::Task['test:scm:functionals'].comment = "Run the scm functional tests"
end
Rake::TestTask.new(:rdm_routing) do |t|
t.libs << "test"
t.verbose = true
t.test_files = FileList['test/integration/routing/*_test.rb']
end
Rake::Task['test:rdm_routing'].comment = "Run the routing tests"
end