styx/connectors_test.go

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()
}
}