mirror of
https://github.com/plashchynski/crono.git
synced 2026-03-14 06:16:35 +01:00
Fix specs
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user