styx/connectors_test.go
2020-08-28 15:55:18 +02:00

15 lines
191 B
Go

package styx
import (
"testing"
"gitlab.dcso.lolcat/LABS/styx/broker"
)
func TestKafkaConnection(t *testing.T) {
_, err := broker.SetUpKafkaConnecter()
if err != nil {
t.Fail()
}
}