1
0
Fork 0
mirror of https://github.com/maybe-finance/maybe.git synced 2025-07-24 15:49:39 +02:00
Maybe/test/jobs/sync_job_test.rb

14 lines
278 B
Ruby
Raw Normal View History

require "test_helper"
class SyncJobTest < ActiveJob::TestCase
test "sync is performed" do
syncable = accounts(:depository)
sync = syncable.syncs.create!(window_start_date: 2.days.ago.to_date)
sync.expects(:perform).once
SyncJob.perform_now(sync)
end
end