scinote-web/spec/jobs/activities/send_webhook_job_spec.rb
artoscinote f68d724202
Rework experiment permissions [SCI-6054] (#3538)
* Rework experiment permissions [SCI-6054]
2021-09-30 11:32:11 +02:00

15 lines
392 B
Ruby

# frozen_string_literal: true
require 'rails_helper'
describe Activities::SendWebhookJob do
let(:webhook) { create :webhook }
let(:activity) { create :activity }
it 'sends the webhook' do
stub_request(:post, webhook.url).to_return(status: 200, body: "", headers: {})
expect(Activities::SendWebhookJob.new(webhook, activity).perform_now.response.code).to eq("200")
end
end