Move packages under internal package

These packages are not part of the public API and can break at any time.
This commit is contained in:
Asdine El Hrychy
2021-05-22 23:50:04 +04:00
parent ef39ce7c45
commit 37ebf47ea8
147 changed files with 880 additions and 1085 deletions

View File

@@ -0,0 +1,12 @@
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"))
}