Skip to content

Instantly share code, notes, and snippets.

@schickling
Created October 5, 2013 08:15
Show Gist options
  • Save schickling/6838249 to your computer and use it in GitHub Desktop.
Save schickling/6838249 to your computer and use it in GitHub Desktop.
Disable sidekiq for testing
# disable sidekiq calls
module Sidekiq::Worker::ClassMethods
def perform_async(*args)
nil
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment