1 package lemmy 2 3 import "testing" 4 5 func TestZeroClient(t *testing.T) { 6 client := &Client{} 7 if _, _, err := client.LookupCommunity("test"); err != nil { 8 t.Log(err) 9 } 10 }