aboutsummaryrefslogtreecommitdiffstats
path: root/actionview/Rakefile
diff options
context:
space:
mode:
authorŁukasz Strzałkowski <lukasz.strzalkowski@gmail.com>2013-08-06 00:47:49 +0200
committerŁukasz Strzałkowski <lukasz.strzalkowski@gmail.com>2013-08-25 11:39:14 +0200
commit53e65e177210ae4fc7958a2e4b082b1a80d274d6 (patch)
tree83b71e6cf7c32f59f900056b35d647b34f532dc9 /actionview/Rakefile
parent969b22f1893b8352601080eb411ea835689b4021 (diff)
downloadrails-53e65e177210ae4fc7958a2e4b082b1a80d274d6.tar.gz
rails-53e65e177210ae4fc7958a2e4b082b1a80d274d6.tar.bz2
rails-53e65e177210ae4fc7958a2e4b082b1a80d274d6.zip
Add AP tests to runner
Diffstat (limited to 'actionview/Rakefile')
-rw-r--r--actionview/Rakefile10
1 files changed, 9 insertions, 1 deletions
diff --git a/actionview/Rakefile b/actionview/Rakefile
index e98a020f42..1c2fd2a867 100644
--- a/actionview/Rakefile
+++ b/actionview/Rakefile
@@ -7,7 +7,7 @@ task :default => :test
# Run the unit tests
desc "Run all unit tests"
-task :test => ["test:template", "test:integration:active_record"]
+task :test => ["test:template", "test:integration:action_pack", "test:integration:active_record"]
namespace :test do
task :isolated do
@@ -31,6 +31,14 @@ namespace :test do
t.warning = true
t.verbose = true
end
+
+ desc 'ActionPack Integration Tests'
+ Rake::TestTask.new(:action_pack) do |t|
+ t.libs << 'test'
+ t.test_files = Dir.glob("test/actionpack/*_test.rb")
+ t.warning = true
+ t.verbose = true
+ end
end
end