photoprism/internal/entity/photo_merge_test.go
2020-12-12 22:02:14 +01:00

18 lines
287 B
Go

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)
})
}