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