mirror of
https://github.com/internetee/registry.git
synced 2025-07-28 13:36:15 +02:00
11 lines
277 B
Ruby
11 lines
277 B
Ruby
require 'test_helper'
|
|
|
|
class ScanCsvRegistryBusinnesContactsJobTest < ActiveJob::TestCase
|
|
def test_delivers_email
|
|
filename = 'test/fixtures/files/ette.csv'
|
|
|
|
assert_performed_jobs 1 do
|
|
ScanCsvRegistryBusinnesContactsJob.perform_later(filename)
|
|
end
|
|
end
|
|
end
|