mirror of
https://github.com/discourse/discourse.git
synced 2025-05-30 15:28:37 +08:00
FIX: stop logging way too much information
This commit is contained in:
@ -1,5 +1,20 @@
|
||||
require 'spec_helper'
|
||||
|
||||
describe TopicView do
|
||||
describe TopicViewItem do
|
||||
|
||||
def add(topic_id, ip, user_id=nil)
|
||||
skip_redis = true
|
||||
TopicViewItem.add(topic_id, ip, user_id, nil, skip_redis)
|
||||
end
|
||||
|
||||
it "raises nothing for dupes" do
|
||||
add(2, "1.1.1.1")
|
||||
add(2, "1.1.1.1", 1)
|
||||
|
||||
TopicViewItem.create!(topic_id: 1, ip_address: "1.1.1.1", viewed_at: 1.day.ago)
|
||||
add(1, "1.1.1.1")
|
||||
|
||||
TopicViewItem.count.should == 3
|
||||
end
|
||||
|
||||
end
|
||||
|
Reference in New Issue
Block a user