mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 03:05:25 +08:00
11 lines
314 B
Ruby
11 lines
314 B
Ruby
require 'spec_helper'
|
|
|
|
describe Jobs::AboutStats do
|
|
it 'caches the stats' do
|
|
stats = { "visited" => 10 }
|
|
About.any_instance.expects(:stats).returns(stats)
|
|
$redis.expects(:setex).with(About.stats_cache_key, 35.minutes, stats.to_json)
|
|
expect(described_class.new.execute({})).to eq(stats)
|
|
end
|
|
end
|