1
0
Fork 0
mirror of https://github.com/maybe-finance/maybe.git synced 2025-07-22 22:59:39 +02:00
Maybe/test/jobs/import_job_test.rb

11 lines
211 B
Ruby
Raw Normal View History

require "test_helper"
class ImportJobTest < ActiveJob::TestCase
test "import is published" do
import = imports(:transaction)
import.expects(:publish).once
ImportJob.perform_now(import)
end
end