feat: backend core - auth, user, role, permission, device, webhook, monitoring, cache, repository, service, middleware, API handlers
This commit is contained in:
10
internal/domain/social_account_test.go
Normal file
10
internal/domain/social_account_test.go
Normal file
@@ -0,0 +1,10 @@
|
||||
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())
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user