pkger/pkging/stdos/current_test.go

21 lines
314 B
Go
Raw Normal View History

package stdos
import (
"testing"
"github.com/markbates/pkger/pkging/costello"
"github.com/stretchr/testify/require"
)
func Test_Pkger_Current(t *testing.T) {
r := require.New(t)
ref, err := costello.NewRef()
r.NoError(err)
pkg, err := NewTemp(ref)
r.NoError(err)
costello.CurrentTest(t, ref, pkg)
}