From 53e65e177210ae4fc7958a2e4b082b1a80d274d6 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=C5=81ukasz=20Strza=C5=82kowski?=
 <lukasz.strzalkowski@gmail.com>
Date: Tue, 6 Aug 2013 00:47:49 +0200
Subject: Add AP tests to runner

---
 actionview/Rakefile | 10 +++++++++-
 1 file changed, 9 insertions(+), 1 deletion(-)

(limited to 'actionview')

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
 
-- 
cgit v1.2.3