forked from cleveragents/cleveragents-core
23 lines
881 B
Plaintext
23 lines
881 B
Plaintext
*** Settings ***
|
|
Documentation Additional integration tests for cleveragents CLI commands
|
|
Library Process
|
|
Library OperatingSystem
|
|
Library String
|
|
|
|
*** Settings ***
|
|
Resource v2_paths.resource
|
|
|
|
*** Test Cases ***
|
|
Check Context Command Help
|
|
[Documentation] Test that context command help is available
|
|
${result} = Run Process python -m cleveragents context --help
|
|
Should Be Equal As Integers ${result.rc} 0
|
|
Should Contain ${result.stdout} Context management
|
|
|
|
Check Actor Run Command Help
|
|
[Documentation] Test that actor run command help is available
|
|
${result} = Run Process python -m cleveragents actor run --help
|
|
Should Be Equal As Integers ${result.rc} 0
|
|
Should Contain ${result.stdout} Usage:
|
|
Should Contain ${result.stdout} actor run
|