29b855f2b9
Add JSONB, pointer/filter, MustFetchOne, and dialect logger registration tests for dbxm and dbxp. Co-authored-by: Cursor <cursoragent@cursor.com>
16 lines
340 B
Go
16 lines
340 B
Go
package dbxp_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"gitea.auvem.com/go-toolkit/dbx"
|
|
"gitea.auvem.com/go-toolkit/dbx/internal/dbxshared"
|
|
_ "gitea.auvem.com/go-toolkit/dbx/dbxp"
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestPostgresDebugLoggerRegistered(t *testing.T) {
|
|
err := dbxshared.InitLogger(dbx.DialectPostgres)
|
|
assert.NoError(t, err)
|
|
}
|