pkger/pkging/stdos/stdos_test.go

15 lines
245 B
Go
Raw Normal View History

package stdos
2019-09-02 01:02:45 +03:00
import (
"testing"
2019-09-12 04:29:39 +03:00
"github.com/markbates/pkger/pkging"
2019-11-01 23:08:10 +03:00
"github.com/markbates/pkger/pkging/pkgtest"
2019-09-02 01:02:45 +03:00
)
func Test_Pkger(t *testing.T) {
2019-11-01 23:08:10 +03:00
pkgtest.All(t, func(ref *pkgtest.Ref) (pkging.Pkger, error) {
2019-11-01 00:20:15 +03:00
return New(ref.Info)
})
2019-09-02 01:02:45 +03:00
}