photoprism/internal/entity/face_test.go
2021-08-13 20:31:41 +02:00

13 lines
178 B
Go

package entity
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestFace_TableName(t *testing.T) {
m := &Face{}
assert.Contains(t, m.TableName(), "faces")
}