aboutsummaryrefslogtreecommitdiffstats
path: root/Rakefile
diff options
context:
space:
mode:
authorGuillermo Iguaran <guilleiguaran@gmail.com>2014-05-19 23:23:02 -0500
committerGuillermo Iguaran <guilleiguaran@gmail.com>2014-05-19 23:23:02 -0500
commit3a233d087a4221ad8822f70e2ae289ef7e543985 (patch)
treeaa77d53751dbab75256b7c6ba20fbd1bb323e47f /Rakefile
parentc6925f52d07a01c2b729a70bac60b11f7e514d76 (diff)
parent1b71fe59b8cd6c7347729703c064b64866b3502e (diff)
downloadrails-3a233d087a4221ad8822f70e2ae289ef7e543985.tar.gz
rails-3a233d087a4221ad8822f70e2ae289ef7e543985.tar.bz2
rails-3a233d087a4221ad8822f70e2ae289ef7e543985.zip
Merge pull request #37 from Aesthetikx/master
Add Sneakers wrapper
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Rakefile b/Rakefile
index 2b8b81248d..e0d8e8e0d8 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_resque test_sidekiq test_sucker_punch test_delayed_job test_queue_classic)
+ tasks = %w(test_inline test_resque test_sidekiq test_sucker_punch test_delayed_job test_queue_classic test_sneakers)
run_without_aborting(*tasks)
end
-%w(inline resque sidekiq sucker_punch delayed_job queue_classic).each do |adapter|
+%w(inline resque sidekiq sucker_punch delayed_job queue_classic sneakers).each do |adapter|
Rake::TestTask.new("test_#{adapter}") do |t|
t.libs << 'test'
t.test_files = FileList['test/cases/**/*_test.rb']