22 lines
663 B
Ruby
22 lines
663 B
Ruby
require "rails_helper"
|
|
|
|
RSpec.describe Pages::BustCacheWorker, type: :worker do
|
|
include_examples "#enqueues_on_correct_queue", "high_priority", 1
|
|
|
|
describe "#perform" do
|
|
let(:worker) { subject }
|
|
let(:page_slug) { "test123" }
|
|
|
|
it "with empty slug does not call the cache buster" do
|
|
allow(EdgeCache::BustPage).to receive(:call)
|
|
worker.perform("")
|
|
expect(EdgeCache::BustPage).not_to have_received(:call)
|
|
end
|
|
|
|
it "busts the cache" do
|
|
allow(EdgeCache::BustPage).to receive(:call).with(page_slug)
|
|
worker.perform(page_slug)
|
|
expect(EdgeCache::BustPage).to have_received(:call).with(page_slug)
|
|
end
|
|
end
|
|
end
|