Fix specs

This commit is contained in:
Dzmitry Plashchynski
2022-07-24 22:38:08 +03:00
parent e03d9b4ba6
commit ddbfa4c42e

View File

@@ -1,13 +1,13 @@
require 'spec_helper'
class TestJob
def perform(args)
def perform(*args)
puts 'Test!'
end
end
class TestFailingJob
def perform(args)
def perform(*args)
raise 'Some error'
end
end