mirror of
https://github.com/chaisql/chai.git
synced 2025-09-27 03:55:59 +08:00
13 lines
230 B
Go
13 lines
230 B
Go
package functions_test
|
|
|
|
import (
|
|
"path/filepath"
|
|
"testing"
|
|
|
|
"github.com/chaisql/chai/internal/testutil"
|
|
)
|
|
|
|
func TestBuiltinFunctions(t *testing.T) {
|
|
testutil.ExprRunner(t, filepath.Join("testdata", "builtin_functions.sql"))
|
|
}
|