This repository has been archived on 2020-04-20. You can view files and clone it, but cannot push or open issues or pull requests.
libricochet-go/connectivity/torProvider_test.go

13 lines
155 B
Go

package connectivity
import "testing"
func TestTorProvider(t *testing.T) {
m, err := StartTor(".", "")
if err != nil {
t.Error(err)
}
m.Close()
}