photoprism/internal/entity/photo_merge_test.go

18 lines
287 B
Go
Raw Normal View History

2020-12-12 21:02:14 +00:00
package entity
import "testing"
func TestPhoto_IdenticalIdentical(t *testing.T) {
t.Run("success", func(t *testing.T) {
photo := PhotoFixtures.Get("Photo19")
result, err := photo.Identical(true, true)
if err != nil {
t.Fatal(err)
}
t.Logf("result: %#v", result)
})
}