mirror of
https://github.com/libp2p/go-libp2p.git
synced 2025-10-15 04:30:50 +08:00
15 lines
252 B
Go
15 lines
252 B
Go
package main
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/libp2p/go-libp2p/examples/testutils"
|
|
)
|
|
|
|
func TestMain(t *testing.T) {
|
|
var h testutils.LogHarness
|
|
h.ExpectPrefix("Okay, no connection from h1 to h3")
|
|
h.ExpectPrefix("Meow! It worked!")
|
|
h.Run(t, run)
|
|
}
|