pkger/pkging/costello/costello.go

33 lines
524 B
Go
Raw Normal View History

package costello
import (
2019-10-30 23:39:05 +03:00
"testing"
"github.com/markbates/pkger/pkging"
2019-10-30 23:39:05 +03:00
"github.com/stretchr/testify/require"
)
2019-10-30 23:39:05 +03:00
type AllFn func(ref *Ref) (pkging.Pkger, error)
func All(t *testing.T, ref *Ref, fn AllFn) {
2019-10-30 23:39:05 +03:00
r := require.New(t)
type tf func(*testing.T, *Ref, pkging.Pkger)
2019-10-30 23:39:05 +03:00
tests := map[string]tf{
2019-10-30 23:49:55 +03:00
"OpenTest": OpenTest,
"StatTest": StatTest,
"CreateTest": CreateTest,
2019-10-30 23:39:05 +03:00
}
for n, tt := range tests {
t.Run(n, func(st *testing.T) {
pkg, err := fn(ref)
r.NoError(err)
tt(st, ref, pkg)
2019-10-30 23:39:05 +03:00
})
}
}