Files
go-zero/core/stores/postgres/postgresql_test.go
2021-02-07 15:27:01 +08:00

12 lines
152 B
Go

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