add more tests for stores (#445)

This commit is contained in:
Kevin Wan
2021-02-07 15:27:01 +08:00
committed by GitHub
parent 316195e912
commit 852891dbd8
3 changed files with 23 additions and 1 deletions

View File

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