Files
chaisql/internal/expr/arithmetic_test.go
Asdine El Hrychy 37ebf47ea8 Move packages under internal package
These packages are not part of the public API and can break at any time.
2021-05-23 11:05:41 +04:00

13 lines
213 B
Go

package expr_test
import (
"path/filepath"
"testing"
"github.com/genjidb/genji/internal/testutil"
)
func TestArithmetic(t *testing.T) {
testutil.ExprRunner(t, filepath.Join("testdata", "arithmetic.sql"))
}