frankfurter/spec/cache_spec.rb
BadMark d0a43e357a
Some checks failed
CI/CD Pipeline / test (push) Has been cancelled
CI/CD Pipeline / publish (push) Has been cancelled
CI/CD Pipeline / release (push) Has been cancelled
up
2026-05-21 01:38:14 -06:00

12 lines
229 B
Ruby

# frozen_string_literal: true
require_relative "helper"
require "cache"
describe Cache do
it "does nothing when not configured" do
cache = Cache.new(zone_id: nil, api_token: nil)
_(cache.purge).must_be_nil
end
end