kubernetes/staging/src/k8s.io/kubectl/pkg/cmd/edit/testdata/testcase-apply-edit-last-applied-syntax-error/test.yaml

description: edit with a syntax error, then re-edit and save
mode: edit-last-applied
args:
- service/svc1
namespace: myproject
expectedStdout:
- "service/svc1 edited"
expectedExitCode: 0
steps:
- type: request
  expectedMethod: GET
  expectedPath: /api/v1/namespaces/myproject/services/svc1
  expectedInput: 0.request
  resultingStatusCode: 200
  resultingOutput: 0.response
- type: edit
  expectedInput: 1.original
  resultingOutput: 1.edited
- type: edit
  expectedInput: 2.original
  resultingOutput: 2.edited
- type: request
  expectedMethod: PATCH
  expectedPath: /api/v1/namespaces/myproject/services/svc1
  expectedContentType: application/merge-patch+json
  expectedInput: 3.request
  resultingStatusCode: 200
  resultingOutput: 3.response