11 lines
227 B
Go
11 lines
227 B
Go
|
|
package domain
|
||
|
|
|
||
|
|
import "testing"
|
||
|
|
|
||
|
|
func TestSocialAccountTableName(t *testing.T) {
|
||
|
|
var account SocialAccount
|
||
|
|
if account.TableName() != "user_social_accounts" {
|
||
|
|
t.Fatalf("unexpected table name: %s", account.TableName())
|
||
|
|
}
|
||
|
|
}
|