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
2016-04-21 14:50:25 +08:00

18 lines
424 B
Ruby

require 'rails_helper'
describe Jobs::DashboardStats do
after do
$redis.flushall
end
it 'caches the stats' do
Timecop.freeze do
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)
end
end
end