2021-02-02 12:05:47 +01:00
|
|
|
package probeservices_test
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestGetTestHelpers(t *testing.T) {
|
2022-05-24 21:01:15 +02:00
|
|
|
if testing.Short() {
|
|
|
|
t.Skip("skip test in short mode")
|
|
|
|
}
|
2021-02-02 12:05:47 +01:00
|
|
|
testhelpers, err := newclient().GetTestHelpers(context.Background())
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
if len(testhelpers) <= 1 {
|
|
|
|
t.Fatal("no returned test helpers?!")
|
|
|
|
}
|
|
|
|
}
|