Skip to content

Commit

Permalink
Add AP tests to runner
Browse files Browse the repository at this point in the history
  • Loading branch information
lukaszx0 committed Aug 25, 2013
1 parent 969b22f commit 53e65e1
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion actionview/Rakefile
Expand Up @@ -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
Expand All @@ -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

Expand Down

0 comments on commit 53e65e1

Please sign in to comment.