mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 06:29:30 +08:00
c9dab6fd08
It's very easy to forget to add `require 'rails_helper'` at the top of every core/plugin spec file, and omissions can cause some very confusing/sporadic errors. By setting this flag in `.rspec`, we can remove the need for `require 'rails_helper'` entirely.
30 lines
743 B
Ruby
30 lines
743 B
Ruby
# frozen_string_literal: true
|
|
|
|
describe "DistributedCache extensions" do
|
|
let(:cache) { DistributedCache.new('mytest') }
|
|
|
|
it "can defer_get_set" do
|
|
messages = MessageBus.track_publish("/distributed_hash") do
|
|
cache.defer_get_set("key") { "value" }
|
|
end
|
|
expect(messages.size).to eq(1)
|
|
expect(cache["key"]).to eq("value")
|
|
end
|
|
|
|
it "works correctly for nil values" do
|
|
block_called_counter = 0
|
|
messages = MessageBus.track_publish("/distributed_hash") do
|
|
2.times do
|
|
cache.defer_get_set("key") do
|
|
block_called_counter += 1
|
|
nil
|
|
end
|
|
end
|
|
end
|
|
|
|
expect(block_called_counter).to eq(1)
|
|
expect(messages.size).to eq(1)
|
|
expect(cache["key"]).to eq(nil)
|
|
end
|
|
end
|