~cytrogen/masto-fe

ref: f7a4d77d908e6de6ce823d13c9fac1b075d9f4f8 masto-fe/spec/workers/post_process_media_worker_spec.rb -rw-r--r-- 278 bytes
f7a4d77d — Eugen Rochko [Glitch] Add `in:` to search popout in web UI 2 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

require 'rails_helper'

describe PostProcessMediaWorker do
  let(:worker) { described_class.new }

  describe 'perform' do
    it 'runs without error for missing record' do
      expect { worker.perform(nil) }.to_not raise_error
    end
  end
end