about summary refs log tree commit diff
path: root/spec/workers/push_conversation_worker_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/workers/push_conversation_worker_spec.rb')
-rw-r--r--spec/workers/push_conversation_worker_spec.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/spec/workers/push_conversation_worker_spec.rb b/spec/workers/push_conversation_worker_spec.rb
new file mode 100644
index 000000000..5fbb4c685
--- /dev/null
+++ b/spec/workers/push_conversation_worker_spec.rb
@@ -0,0 +1,13 @@
+# frozen_string_literal: true
+
+require 'rails_helper'
+
+describe PushConversationWorker 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