diff --git a/actionview/Rakefile b/actionview/Rakefile index e98a020f423ea..1c2fd2a867aab 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