require 'rails_helper' RSpec.describe 'Webhooks::WhatsappController', type: :request do describe 'POST /webhooks/whatsapp/{:phone_number}' do it 'call the whatsapp events job with the params' do allow(Webhooks::WhatsappEventsJob).to receive(:perform_later) expect(Webhooks::WhatsappEventsJob).to receive(:perform_later) post '/webhooks/whatsapp/123221321', params: { content: 'hello' } expect(response).to have_http_status(:success) end end end