buildah/define/pull_test.go

14 lines
193 B
Go
Raw Normal View History

package define
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestPullPolicy(t *testing.T) {
for name, val := range PolicyMap {
assert.Equal(t, name, val.String())
}
}