Add test for entity/category.go

This commit is contained in:
Theresa Gresch 2019-12-17 18:25:39 +01:00
parent 1b78ae2513
commit 2d12e6aa72

View File

@ -0,0 +1,14 @@
package entity
import (
"github.com/stretchr/testify/assert"
"testing"
)
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)
}