test/plugins/job/persistence_test.rb in rocketjob-3.4.3 vs test/plugins/job/persistence_test.rb in rocketjob-3.5.0

- old
+ new

@@ -2,11 +2,10 @@ module Plugins module Job # Unit Test for RocketJob::Job class PersistenceTest < Minitest::Test - class PersistJob < RocketJob::Job self.priority = 53 field :data, type: Hash def perform(hash) @@ -87,10 +86,9 @@ assert_equal 2, counts[:queued] assert_equal 1, counts[:queued_now] assert_equal 1, counts[:scheduled] end end - end end end end