24eff21aa4
Default to photo name when search term is too short or on the stop list. Search full text index otherwise, which now include names of people (requires reindexing).
15 lines
250 B
Go
15 lines
250 B
Go
package entity
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestDeleteOrphanPeople(t *testing.T) {
|
|
t.Run("Success", func(t *testing.T) {
|
|
if count, err := DeleteOrphanPeople(); err != nil {
|
|
t.Fatal(err)
|
|
} else {
|
|
t.Logf("deleted %d faces", count)
|
|
}
|
|
})
|
|
}
|