added test for #499

This commit is contained in:
cascode 2019-01-04 10:14:13 -08:00
parent 5b23dfa1c5
commit ab6ebbae67
1 changed files with 8 additions and 0 deletions

View File

@ -756,5 +756,13 @@ defmodule Pleroma.UserTest do
assert user_four ==
User.search("lain@ple") |> List.first() |> Map.put(:search_distance, nil)
end
test "finds a user whose name is nil" do
_user = insert(:user, %{name: "notamatch", nickname: "testuser@pleroma.amplifie.red"})
user_two = insert(:user, %{name: nil, nickname: "lain@pleroma.soykaf.com"})
assert user_two ==
User.search("lain@pleroma.soykaf.com") |> List.first() |> Map.put(:search_distance, nil)
end
end
end