884dea17de
Signed-off-by: Michael Mayer <michael@photoprism.app>
15 lines
245 B
Go
15 lines
245 B
Go
package entity
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestDeleteOrphanPeople(t *testing.T) {
|
|
t.Run("Ok", func(t *testing.T) {
|
|
if count, err := DeleteOrphanPeople(); err != nil {
|
|
t.Fatal(err)
|
|
} else {
|
|
t.Logf("deleted %d faces", count)
|
|
}
|
|
})
|
|
}
|