Slide 288
Slide 288 text
Post.trending
scope :trending,
-> { order("upvotes DESC") }
describe Post do
describe ".trending" do
popular = create(:post, upvotes: 42)
just_created = create(:post, upvotes: 1)
trending_posts = Post.trending
expect(trending_posts).to \
eq [popular, just_created]
end
end