CheqBooq/storage/mongo_test.go

11 lines
155 B
Go

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