mirror of
https://github.com/retailcrm/mg-transport-core.git
synced 2024-11-22 13:16:04 +03:00
12 lines
162 B
Go
12 lines
162 B
Go
|
package core
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
"github.com/stretchr/testify/assert"
|
||
|
)
|
||
|
|
||
|
func TestModels_TableName(t *testing.T) {
|
||
|
assert.NotEmpty(t, (User{}).TableName())
|
||
|
}
|