All checks were successful
ci/woodpecker/push/build-image Pipeline was successful
18 lines
314 B
Go
18 lines
314 B
Go
package spc
|
|
|
|
import (
|
|
"os"
|
|
"path/filepath"
|
|
"testing"
|
|
)
|
|
|
|
func readSPCTestFixture(t *testing.T, name string) []byte {
|
|
t.Helper()
|
|
path := filepath.Join("..", "..", "providers", "spc", "testdata", name)
|
|
raw, err := os.ReadFile(path)
|
|
if err != nil {
|
|
t.Fatalf("read fixture %s: %v", path, err)
|
|
}
|
|
return raw
|
|
}
|