add more tests for stores (#445)
parent
316195e912
commit
852891dbd8
@ -0,0 +1,11 @@
|
|||||||
|
package clickhouse
|
||||||
|
|
||||||
|
import (
|
||||||
|
"testing"
|
||||||
|
|
||||||
|
"github.com/stretchr/testify/assert"
|
||||||
|
)
|
||||||
|
|
||||||
|
func TestClickHouse(t *testing.T) {
|
||||||
|
assert.NotNil(t, New("clickhouse"))
|
||||||
|
}
|
@ -0,0 +1,11 @@
|
|||||||
|
package postgres
|
||||||
|
|
||||||
|
import (
|
||||||
|
"testing"
|
||||||
|
|
||||||
|
"github.com/stretchr/testify/assert"
|
||||||
|
)
|
||||||
|
|
||||||
|
func TestPostgreSql(t *testing.T) {
|
||||||
|
assert.NotNil(t, New("postgre"))
|
||||||
|
}
|
Loading…
Reference in New Issue