mirror of
https://github.com/Freika/dawarich.git
synced 2026-01-10 01:01:39 -05:00
20 lines
504 B
Ruby
20 lines
504 B
Ruby
require 'rails_helper'
|
|
|
|
RSpec.describe ImportJob, type: :job do
|
|
describe '#perform' do
|
|
subject(:perform) { described_class.new.perform(user.id, import.id) }
|
|
|
|
let(:user) { create(:user) }
|
|
let(:import) { create(:import, user:, name: 'owntracks_export.json') }
|
|
|
|
it 'creates points' do
|
|
expect { perform }.to change { Point.count }.by(8)
|
|
end
|
|
|
|
it 'calls StatCreatingJob' do
|
|
expect(StatCreatingJob).to receive(:perform_later).with(user.id)
|
|
|
|
perform
|
|
end
|
|
end
|
|
end
|