Files
go-zero/core/stores/pg/postgresql_test.go
2022-04-13 12:46:09 +08:00

12 lines
146 B
Go

package pg
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestPostgreSql(t *testing.T) {
assert.NotNil(t, New("postgre"))
}