mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-22 22:59:39 +02:00
14 lines
271 B
Ruby
14 lines
271 B
Ruby
|
require "test_helper"
|
||
|
|
||
|
class SyncJobTest < ActiveJob::TestCase
|
||
|
test "sync is performed" do
|
||
|
syncable = accounts(:depository)
|
||
|
|
||
|
sync = syncable.syncs.create!(start_date: 2.days.ago.to_date)
|
||
|
|
||
|
sync.expects(:perform).once
|
||
|
|
||
|
SyncJob.perform_now(sync)
|
||
|
end
|
||
|
end
|