mirror of
https://github.com/argoproj/argo-cd.git
synced 2026-03-06 16:38:46 +01:00
16 lines
440 B
Go
16 lines
440 B
Go
package syncwaves
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
testingutils "github.com/argoproj/gitops-engine/pkg/utils/testing"
|
|
)
|
|
|
|
func TestWave(t *testing.T) {
|
|
assert.Equal(t, 0, Wave(testingutils.NewPod()))
|
|
assert.Equal(t, 1, Wave(testingutils.Annotate(testingutils.NewPod(), "argocd.argoproj.io/sync-wave", "1")))
|
|
assert.Equal(t, 1, Wave(testingutils.Annotate(testingutils.NewPod(), "helm.sh/hook-weight", "1")))
|
|
}
|