Skip to content

Commit

Permalink
Move test classes into spec/support
Browse files Browse the repository at this point in the history
  • Loading branch information
martinstreicher committed Oct 23, 2024
1 parent 578a522 commit 44c2e23
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
servo (0.1.2)
servo (0.1.3)
activemodel
activesupport
interactor
Expand Down
5 changes: 1 addition & 4 deletions lib/servo/sidekiq_job.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,6 @@
module Servo
class SidekiqJob
include Callable

if defined?(Sidekiq)
include Sidekiq::Worker
end
include Sidekiq::Worker if defined?(Sidekiq)
end
end
2 changes: 1 addition & 1 deletion lib/servo/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module Servo
VERSION = '0.1.2'
VERSION = '0.1.3'
end
4 changes: 4 additions & 0 deletions spec/support/application_job.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# frozen_string_literal: true

class ApplicationJob < ActiveJob::Base
end
File renamed without changes.
File renamed without changes.

0 comments on commit 44c2e23

Please sign in to comment.