Style fix for test

This commit is contained in:
riking 2018-05-21 18:04:54 -07:00 committed by Sam
parent 501bc0e9af
commit 12e4dd59b7

View File

@ -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