aboutsummaryrefslogtreecommitdiffstats
path: root/Rakefile
diff options
context:
space:
mode:
authorMike Perham <mperham@gmail.com>2014-05-20 09:13:28 -0700
committerMike Perham <mperham@gmail.com>2014-05-20 09:13:28 -0700
commit897f86b8d13cd0583dc5e579ed56c6f4064330db (patch)
tree8afff02f4bc42e2856feeb75d566fedf16cb0f88 /Rakefile
parent85880eb427191bdd46967ff3bacf95419df3ef7a (diff)
parent86a71b154ae16027cedda0d7878bee22195fe04d (diff)
downloadrails-897f86b8d13cd0583dc5e579ed56c6f4064330db.tar.gz
rails-897f86b8d13cd0583dc5e579ed56c6f4064330db.tar.bz2
rails-897f86b8d13cd0583dc5e579ed56c6f4064330db.zip
merge master
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Rakefile b/Rakefile
index 933c049a68..8ab372e08c 100644
--- a/Rakefile
+++ b/Rakefile
@@ -20,11 +20,11 @@ task :default => :test
desc 'Run all adapter tests'
task :test do
- tasks = %w(test_inline test_delayed_job test_que test_queue_classic test_resque test_sidekiq test_sneakers test_sucker_punch)
+ tasks = %w(test_inline test_delayed_job test_que test_queue_classic test_resque test_sidekiq test_sneakers test_sucker_punch test_backburner)
run_without_aborting(*tasks)
end
-%w(inline delayed_job que queue_classic resque sidekiq sneakers sucker_punch).each do |adapter|
+%w(inline delayed_job que queue_classic resque sidekiq sneakers sucker_punch backburner).each do |adapter|
Rake::TestTask.new("test_#{adapter}") do |t|
t.libs << 'test'
t.test_files = FileList['test/cases/**/*_test.rb']