mirror of
https://github.com/discourse/discourse.git
synced 2026-08-12 05:55:39 -05:00
add top page
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
require 'spec_helper'
|
||||
|
||||
describe TopTopic do
|
||||
|
||||
it { should belong_to :topic }
|
||||
|
||||
context "refresh!" do
|
||||
|
||||
let!(:t1) { Fabricate(:topic) }
|
||||
let!(:t2) { Fabricate(:topic) }
|
||||
|
||||
it "begins blank" do
|
||||
TopTopic.all.should be_blank
|
||||
end
|
||||
|
||||
context "after calculating" do
|
||||
|
||||
before do
|
||||
TopTopic.refresh!
|
||||
end
|
||||
|
||||
it "should have top topics" do
|
||||
TopTopic.pluck(:topic_id).should =~ [t1.id, t2.id]
|
||||
end
|
||||
|
||||
end
|
||||
|
||||
end
|
||||
|
||||
end
|
||||
Reference in New Issue
Block a user