Files
go-zero/core/stores/pg/postgresql_test.go

12 lines
146 B
Go
Raw Normal View History

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