mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-11-15 01:11:23 +00:00
Fix topic spec
This commit is contained in:
parent
d70075de84
commit
1c35ed5ef2
1 changed files with 2 additions and 3 deletions
|
@ -32,9 +32,8 @@ describe Topic do
|
|||
it "returns 5 unique, most recently posted topics" do
|
||||
topics = []
|
||||
10.times do
|
||||
topic = create :topic
|
||||
topics << topic
|
||||
3.times { create :post, topic: topic }
|
||||
topic = create :topic, first_post: "Foo"
|
||||
topics.push(topic)
|
||||
end
|
||||
recent_topics = Topic.recent_topics
|
||||
topics.last(5).each do |topic|
|
||||
|
|
Loading…
Reference in a new issue