Ver código fonte

add more tests for stores (#445)

Kevin Wan 3 anos atrás
pai
commit
852891dbd8

+ 11 - 0
core/stores/clickhouse/clickhouse_test.go

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

+ 1 - 1
core/stores/postgres/postgresql.go

@@ -7,6 +7,6 @@ import (
 
 const postgresDriverName = "postgres"
 
-func NewPostgres(datasource string, opts ...sqlx.SqlOption) sqlx.SqlConn {
+func New(datasource string, opts ...sqlx.SqlOption) sqlx.SqlConn {
 	return sqlx.NewSqlConn(postgresDriverName, datasource, opts...)
 }

+ 11 - 0
core/stores/postgres/postgresql_test.go

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