Instead of parsing file names and basing the commands on those, store the commands in files, so that you can edit files to change which commands are run. This makes the file names for the golden files match the command being run, other than replacing / with _. To add commands for golden files, edit the files in the spec/routes/api/cli/golden-file-commands folder.
11 lines
571 B
Plaintext
11 lines
571 B
Plaintext
vm eu-central-h1/test-vm -4 scp :remote-path local-path
|
|
vm eu-central-h1/test-vm -4 scp -r local-path :remote-path
|
|
vm eu-central-h1/test-vm -6 scp :remote-path local-path
|
|
vm eu-central-h1/test-vm -6 scp -r local-path :remote-path
|
|
vm eu-central-h1/test-vm scp local-path :remote-path
|
|
vm eu-central-h1/test-vm scp :remote-path local-path
|
|
vm eu-central-h1/test-vm scp -r local-path :remote-path
|
|
vm eu-central-h1/test-vm scp -r :remote-path local-path
|
|
vm eu-central-h1/test-vm -u foo scp :remote-path local-path
|
|
vm eu-central-h1/test-vm -u foo scp -r local-path :remote-path
|