diff --git a/pkg/helmexec/id_test.go b/pkg/helmexec/id_test.go new file mode 100644 index 00000000..ffe36ce7 --- /dev/null +++ b/pkg/helmexec/id_test.go @@ -0,0 +1,13 @@ +package helmexec + +import ( + "testing" + + "github.com/stretchr/testify/require" +) + +func TestNewExecutionID(t *testing.T) { + idx := newExecutionID() + idy := newExecutionID() + require.NotEqual(t, idx, idy, "Execution IDs should be unique") +}