8384f53e28
Add Robot regression coverage for `actor remove --format json`, document the flag in the CLI synopsis, and record the fix in the changelog.\n\nISSUES CLOSED: #6491
19 lines
752 B
Plaintext
19 lines
752 B
Plaintext
*** Settings ***
|
|
Documentation Integration tests for actor remove CLI format output
|
|
Resource ${CURDIR}/common.resource
|
|
Suite Setup Setup Test Environment
|
|
Suite Teardown Cleanup Test Environment
|
|
|
|
*** Variables ***
|
|
${HELPER} ${CURDIR}/helper_actor_remove_cli.py
|
|
|
|
*** Test Cases ***
|
|
Actor Remove Format JSON Emits Spec Envelope
|
|
[Documentation] Verify that ``actor remove --format json`` emits a spec-compliant envelope
|
|
[Tags] actor_remove_cli_format
|
|
${result}= Run Process ${PYTHON} ${HELPER} remove-json cwd=${WORKSPACE}
|
|
Log ${result.stdout}
|
|
Log ${result.stderr}
|
|
Should Be Equal As Integers ${result.rc} 0
|
|
Should Contain ${result.stdout} actor-remove-json-format-ok
|