Chatwoot/spec/services/message_templates/template/email_collect_spec.rb

13 lines
347 B
Ruby
Raw Normal View History

require 'rails_helper'
describe ::MessageTemplates::Template::EmailCollect do
context 'when this hook is called' do
let(:conversation) { create(:conversation) }
it 'creates the email collect messages' do
described_class.new(conversation: conversation).perform
expect(conversation.messages.count).to eq(2)
end
end
end