12 lines
314 B
Ruby
12 lines
314 B
Ruby
require "rails_helper"
|
|
|
|
RSpec.describe EdgeCache::BustSidebar, type: :service do
|
|
before do
|
|
allow(described_class).to receive(:bust).with("/sidebars/home").once
|
|
end
|
|
|
|
it "busts the cache" do
|
|
described_class.call
|
|
expect(described_class).to have_received(:bust).with("/sidebars/home").once
|
|
end
|
|
end
|