aboutsummaryrefslogtreecommitdiffstats
path: root/Rakefile
diff options
context:
space:
mode:
authorAbdelkader Boudih <terminale@gmail.com>2014-05-18 19:20:06 +0000
committerAbdelkader Boudih <terminale@gmail.com>2014-05-18 19:20:06 +0000
commit68543de83612049e3254f7243b575039f102cd49 (patch)
tree09a5d0ef639239f8cdf5f31785645668188cb360 /Rakefile
parent53f08f98686942a0335a1b5d5362dc442461bc2f (diff)
downloadrails-68543de83612049e3254f7243b575039f102cd49.tar.gz
rails-68543de83612049e3254f7243b575039f102cd49.tar.bz2
rails-68543de83612049e3254f7243b575039f102cd49.zip
Add Sucker Punch adapter/wrapper
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Rakefile b/Rakefile
index 82522f4a89..7f38657160 100644
--- a/Rakefile
+++ b/Rakefile
@@ -22,12 +22,12 @@ task :default => :test
desc 'Run all adapter tests'
task :test do
- tasks = %w(test_inline test_resque test_sidekiq)
+ tasks = %w(test_inline test_resque test_sidekiq test_sucker_punch)
run_without_aborting(*tasks)
end
-%w( inline resque sidekiq ).each do |adapter|
+%w( inline resque sidekiq sucker_punch).each do |adapter|
Rake::TestTask.new("test_#{adapter}") do |t|
t.libs << 'test'
t.test_files = FileList['test/cases/**/*_test.rb']