1
0
Fork 0
discourse-custom-wizard-unl.../spec/components/custom_wizard/cache_spec.rb

34 Zeilen
740 B
Ruby

# frozen_string_literal: true
describe CustomWizard::Cache do
it "writes and reads values to the cache" do
2021-03-11 07:30:15 +01:00
CustomWizard::Cache.new('list').write([1, 2, 3])
expect(CustomWizard::Cache.new('list').read).to eq([1, 2, 3])
end
2021-03-11 07:30:15 +01:00
it "deletes values from the cache" do
CustomWizard::Cache.new('list').delete
expect(CustomWizard::Cache.new('list').read).to eq(nil)
end
2021-03-11 07:30:15 +01:00
describe "#wrap" do
before do
2021-03-11 07:30:15 +01:00
@raw = [1, 2, 3]
end
2021-03-11 07:30:15 +01:00
def list
CustomWizard::Cache.wrap('list') { @raw }
end
2021-03-11 07:30:15 +01:00
it "returns value from passed block" do
2021-03-11 07:30:15 +01:00
expect(list).to eq([1, 2, 3])
end
2021-03-11 07:30:15 +01:00
it "returns cached value" do
cached = list
2021-03-11 07:30:15 +01:00
@raw = [3, 2, 1]
expect(list).to eq(cached)
end
end
end