45355c7303
Work in progress.
12 lines
178 B
Go
12 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")
|
|
}
|