22 lines
384 B
Go
22 lines
384 B
Go
|
// Copyright (c) 2024 Celestino Amoroso (celestino.amoroso@gmail.com).
|
||
|
// All rights reserved.
|
||
|
|
||
|
// t_template_test.go
|
||
|
package expr
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
)
|
||
|
|
||
|
func TestSomething(t *testing.T) {
|
||
|
section := "Something"
|
||
|
inputs := []inputType{
|
||
|
/* 1 */ {`1`, int64(1), nil},
|
||
|
}
|
||
|
|
||
|
// t.Setenv("EXPR_PATH", ".")
|
||
|
|
||
|
// parserTestSpec(t, section, inputs, 1)
|
||
|
parserTest(t, section, inputs)
|
||
|
}
|