aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/Rakefile
diff options
context:
space:
mode:
authorNick Sutterer <apotonick@gmail.com>2011-09-22 13:52:52 +0200
committerJosé Valim <jose.valim@gmail.com>2011-09-22 14:00:53 +0200
commit41bca5d4667a49666fc5a80bebd91f27099d1674 (patch)
tree92aaef544a5c3dc94520cf318ce44cd79e529fe7 /actionpack/Rakefile
parent1ca3fbfbf2dfc9b2bff46ca680a89e005a1fc2d2 (diff)
downloadrails-41bca5d4667a49666fc5a80bebd91f27099d1674.tar.gz
rails-41bca5d4667a49666fc5a80bebd91f27099d1674.tar.bz2
rails-41bca5d4667a49666fc5a80bebd91f27099d1674.zip
Add rake test:template.
Diffstat (limited to 'actionpack/Rakefile')
-rwxr-xr-xactionpack/Rakefile5
1 files changed, 5 insertions, 0 deletions
diff --git a/actionpack/Rakefile b/actionpack/Rakefile
index 66dd88f0c6..d9e3e56fcc 100755
--- a/actionpack/Rakefile
+++ b/actionpack/Rakefile
@@ -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'