Additional unit tests.

This commit is contained in:
go-jet 2019-07-19 17:19:58 +02:00
parent a2ee0155ac
commit e431f3ecb1
11 changed files with 269 additions and 12 deletions

View file

@ -14,10 +14,6 @@ import (
// ToGoIdentifier converts database to Go identifier.
func ToGoIdentifier(databaseIdentifier string) string {
if len(databaseIdentifier) == 0 {
return databaseIdentifier
}
return snaker.SnakeToCamel(replaceInvalidChars(databaseIdentifier))
}