mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 09:26:54 -06:00
Style fix for test
This commit is contained in:
parent
501bc0e9af
commit
12e4dd59b7
@ -28,14 +28,13 @@ RSpec.describe UserProfileView do
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
it "should not create duplicated profile view for signed in user" do
|
it "should not create duplicated profile view or log IP for signed in user" do
|
||||||
time = Time.zone.now
|
time = Time.zone.now
|
||||||
|
|
||||||
['1.1.1.1', '2.2.2.2'].each do |ip|
|
['1.1.1.1', '2.2.2.2'].each do |ip|
|
||||||
add(user_profile_id, ip, other_user.id, time)
|
add(user_profile_id, ip, other_user.id, time)
|
||||||
expect(described_class.count).to eq(1)
|
expect(described_class.count).to eq(1)
|
||||||
# should not actually log IPs
|
expect(UserProfileView.find_by(user_id: other_user.id).ip_address).to eq(nil)
|
||||||
expect(UserProfileView.where(user_id: other_user.id).count(:ip_address)).to eq(0)
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user