2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-09-06 09:10:25 +08:00
discourse/spec/jobs/dashboard_stats_spec.rb

18 lines
461 B
Ruby

require 'rails_helper'
describe Jobs::DashboardStats do
it 'caches the stats' do
Timecop.freeze do
begin
stats = AdminDashboardData.fetch_stats.to_json
cache_key = AdminDashboardData.stats_cache_key
expect($redis.get(cache_key)).to eq(nil)
expect(described_class.new.execute({})).to eq(stats)
expect($redis.get(cache_key)).to eq(stats)
ensure
$redis.del(cache_key)
end
end
end
end