Remove spec file that was accidentally added.

This commit is contained in:
Guo Xiang Tan 2018-05-21 17:35:44 +08:00
parent 467d91347a
commit aae5575d33
1 changed files with 0 additions and 28 deletions

View File

@ -1,28 +0,0 @@
require 'rails_helper'
RSpec.describe WebHookEnqueuer do
describe '#find_by_type' do
let(:enqueuer) { WebHookEnqueuer.new }
let!(:post_hook) { Fabricate(:web_hook, payload_url: " https://example.com ") }
let!(:topic_hook) { Fabricate(:topic_web_hook) }
it "returns unique hooks" do
post_hook.web_hook_event_types << WebHookEventType.find_by(name: 'topic')
post_hook.update!(wildcard_web_hook: true)
expect(enqueuer.find_by_type(:post)).to eq([post_hook])
end
it 'find relevant hooks' do
expect(enqueuer.find_by_type(:post)).to eq([post_hook])
expect(enqueuer.find_by_type(:topic)).to eq([topic_hook])
end
it 'excludes inactive hooks' do
post_hook.update!(active: false)
expect(enqueuer.find_by_type(:post)).to eq([])
expect(enqueuer.find_by_type(:topic)).to eq([topic_hook])
end
end
end