mirror of https://github.com/markbates/pkger.git
21 lines
318 B
Go
21 lines
318 B
Go
|
package stdos
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
"github.com/markbates/pkger/pkging/costello"
|
||
|
"github.com/stretchr/testify/require"
|
||
|
)
|
||
|
|
||
|
func Test_Pkger_RemoveAll(t *testing.T) {
|
||
|
r := require.New(t)
|
||
|
|
||
|
ref, err := costello.NewRef()
|
||
|
r.NoError(err)
|
||
|
|
||
|
pkg, err := NewTemp(ref)
|
||
|
r.NoError(err)
|
||
|
|
||
|
costello.RemoveAllTest(t, ref, pkg)
|
||
|
}
|