Sha256: c126636a8c7cd1fc59a4653ad40506e125a55d73cde37dd2295d62dbb3442fad
Contents?: true
Size: 1.1 KB
Versions: 48
Compression:
Stored size: 1.1 KB
Contents
# frozen_string_literal: true require 'rails_helper' RSpec.describe Spree::Preferences::Store, type: :model do before :each do @store = Spree::Preferences::StoreInstance.new end it "sets and gets a key" do @store.set :test, 1 expect(@store.exist?(:test)).to be true expect(@store.get(:test)).to eq 1 end it "can set and get false values when cache return nil" do @store.set :test, false expect(@store.get(:test)).to be false end it "will return db value when cache is emtpy and cache the db value" do preference = Spree::Preference.where(key: 'test').first_or_initialize preference.value = '123' preference.save Rails.cache.clear expect(@store.get(:test)).to eq '123' expect(Rails.cache.read(:test)).to eq '123' end it "should return and cache fallback value when supplied" do Rails.cache.clear expect(@store.get(:test){ false }).to be false expect(Rails.cache.read(:test)).to be false end it "should return nil when key can't be found and fallback value is not supplied" do expect(@store.get(:random_key){ nil }).to be_nil end end
Version data entries
48 entries across 48 versions & 2 rubygems