photoprism/internal/entity/category_test.go

16 lines
353 B
Go
Raw Normal View History

2019-12-17 17:25:39 +00:00
package entity
import (
"testing"
"github.com/stretchr/testify/assert"
2019-12-17 17:25:39 +00:00
)
func TestCategory_TableName(t *testing.T) {
label := &Label{LabelSlug: "cute-kitten", LabelName: " Cute Kitten"}
category := &Category{LabelID: 1, CategoryID: 1, Label: label, Category: label}
tableName := category.TableName()
assert.Equal(t, "categories", tableName)
}