package storage
import "testing"
func TestMongoNew(t *testing.T) {
_, err := NewMongo("mongodb://localhost:27017")
if err != nil {
t.Fatal(err)
}