postgresql_test.go 152 B

1234567891011
  1. package postgres
  2. import (
  3. "testing"
  4. "github.com/stretchr/testify/assert"
  5. )
  6. func TestPostgreSql(t *testing.T) {
  7. assert.NotNil(t, New("postgre"))
  8. }