7a0b84848f
* Add helpers to assist with template tests * Change null []byte from string to []byte
8 lines
384 B
Smarty
8 lines
384 B
Smarty
{{- $tableNameSingular := .Table.Name | singular | titleCase -}}
|
|
{{- $dbName := singular .Table.Name -}}
|
|
{{- $tableNamePlural := .Table.Name | plural | titleCase -}}
|
|
{{- $varNamePlural := .Table.Name | plural | camelCase -}}
|
|
{{- $varNameSingular := .Table.Name | singular | camelCase -}}
|
|
func Test{{$tableNamePlural}}Select(t *testing.T) {
|
|
t.Errorf("test select not implemented")
|
|
}
|