mirror of
https://github.com/argoproj/argo-cd
synced 2026-04-21 08:57:17 +00:00
14 lines
340 B
Go
14 lines
340 B
Go
package helm
|
|
|
|
import (
|
|
"testing"
|
|
|
|
testingutils "github.com/argoproj/argo-cd/gitops-engine/pkg/utils/testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestWeight(t *testing.T) {
|
|
assert.Equal(t, 0, Weight(testingutils.NewPod()))
|
|
assert.Equal(t, 1, Weight(testingutils.Annotate(testingutils.NewPod(), "helm.sh/hook-weight", "1")))
|
|
}
|