1
0
Fork 0
mirror of https://github.com/mperham/sidekiq.git synced 2022-11-09 13:52:34 -05:00
mperham--sidekiq/lib/sidekiq/testing.rb

11 lines
200 B
Ruby
Raw Normal View History

module Sidekiq
module Worker
module ClassMethods
2012-02-09 22:33:36 -08:00
alias_method :perform_async_old, :perform_async
def perform_async(*args)
self.new.perform(*args)
end
end
end
end