mirror of
https://github.com/discourse/discourse.git
synced 2025-09-10 21:01:33 +08:00
DEV: Order links by domain and url in spec
This commit is contained in:
parent
9bc992dce4
commit
ced8cdad24
1 changed files with 1 additions and 1 deletions
|
@ -34,7 +34,7 @@ describe UserSummarySerializer do
|
|||
topic = Fabricate(:topic)
|
||||
post = Fabricate(:post_with_external_links, user: topic.user, topic: topic)
|
||||
TopicLink.extract_from(post)
|
||||
TopicLink.where(topic_id: topic.id).order(domain: :asc).each_with_index do |link, index|
|
||||
TopicLink.where(topic_id: topic.id).order(domain: :asc, url: :asc).each_with_index do |link, index|
|
||||
index.times do |i|
|
||||
TopicLinkClick.create(topic_link: link, ip_address: "192.168.1.#{i + 1}")
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue