18 lines
663 B
Plaintext
18 lines
663 B
Plaintext
*** Settings ***
|
|
Documentation Smoke test for plan lifecycle persistence via repositories
|
|
Library Process
|
|
Library OperatingSystem
|
|
Library String
|
|
|
|
*** Variables ***
|
|
${PYTHON} python
|
|
|
|
*** Test Cases ***
|
|
Plan Lifecycle Persistence Via Helper Script
|
|
[Documentation] Create action + plan, verify persistence through transitions
|
|
${result}= Run Process ${PYTHON} ${CURDIR}/helper_plan_lifecycle_persistence.py
|
|
... stderr=STDOUT timeout=30s
|
|
Log ${result.stdout}
|
|
Should Contain ${result.stdout} PASS: plan_lifecycle_persistence smoke test
|
|
Should Be Equal As Integers ${result.rc} 0
|