Add rake test:template.

This commit is contained in:
Nick Sutterer
2011-09-22 13:52:52 +02:00
committed by José Valim
parent 1ca3fbfbf2
commit 41bca5d466

View File

@@ -26,6 +26,11 @@ namespace :test do
Rake::TestTask.new(:isolated) do |t|
t.pattern = 'test/ts_isolated.rb'
end
Rake::TestTask.new(:template) do |t|
t.libs << 'test'
t.pattern = 'test/template/**/*.rb'
end
end
desc 'ActiveRecord Integration Tests'