mirror of
https://github.com/zeromicro/go-zero.git
synced 2026-05-08 07:30:01 +08:00
12 lines
152 B
Go
12 lines
152 B
Go
|
|
package postgres
|
||
|
|
|
||
|
|
import (
|
||
|
|
"testing"
|
||
|
|
|
||
|
|
"github.com/stretchr/testify/assert"
|
||
|
|
)
|
||
|
|
|
||
|
|
func TestPostgreSql(t *testing.T) {
|
||
|
|
assert.NotNil(t, New("postgre"))
|
||
|
|
}
|