discourse/spec/jobs/dashboard_stats_spec.rb
Sam Saffron 045a2abcec FEATURE: remove the timecop gem
We should only have one way of mocking time, misuse of timecop
was causing build stability issues
2017-07-24 12:11:10 -04:00

19 lines
430 B
Ruby

require 'rails_helper'
describe Jobs::DashboardStats do
it 'caches the stats' do
freeze_time
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