*** Settings *** Documentation Akas sanity test suite Library Collections Library Process Test Tags core cli *** Variables *** ${BIN} release/akas ${VERSION} 0.0.0 *** Test Cases *** Test AKAS options: [--version] option [Documentation] Sanity test ${result} = When Run Process ${BIN} --version Then Should Be Equal As Integers ${result.rc} 0 And Should Contain ${result.stdout} akas And Should Contain ${result.stdout} ${VERSION} Test AKAS options: [-V] short option [Documentation] Sanity test ${result} = When Run Process ${BIN} -V Then Should Be Equal As Integers ${result.rc} 0 And Should Contain ${result.stdout} akas And Should Contain ${result.stdout} ${VERSION} Test AKAS options: [--help] option [Documentation] Sanity test ${result} = When Run Process ${BIN} --help Then Should Be Equal As Integers ${result.rc} 0 And Should Contain ${result.stdout} A HTTP API key-Based Authorization Server Test AKAS options: [-h] short option [Documentation] Sanity test ${result} = When Run Process ${BIN} -h Then Should Be Equal As Integers ${result.rc} 0 And Should Contain ${result.stdout} A HTTP API key-Based Authorization Server