github.com/falafeljan/pkger@v0.18.0/pkging/mem/mem_test.go (about)

     1  package mem_test
     2  
     3  import (
     4  	"testing"
     5  
     6  	"github.com/markbates/pkger/pkging"
     7  	"github.com/markbates/pkger/pkging/mem"
     8  	"github.com/markbates/pkger/pkging/pkgtest"
     9  )
    10  
    11  func Test_Pkger(t *testing.T) {
    12  	pkgtest.All(t, func(ref *pkgtest.Ref) (pkging.Pkger, error) {
    13  		return mem.New(ref.Info)
    14  	})
    15  }