forked from cleveragents/cleveragents-core
18 lines
636 B
Plaintext
18 lines
636 B
Plaintext
*** Settings ***
|
|
Documentation Smoke test for UnitOfWork lifecycle repository wiring
|
|
Library Process
|
|
Library OperatingSystem
|
|
Library String
|
|
|
|
*** Variables ***
|
|
${PYTHON} python
|
|
|
|
*** Test Cases ***
|
|
UoW Lifecycle Action And Plan Via Helper Script
|
|
[Documentation] Create action + plan via UoW, verify retrieval in new session
|
|
${result}= Run Process ${PYTHON} ${CURDIR}/helper_uow_lifecycle.py
|
|
... stderr=STDOUT timeout=30s
|
|
Log ${result.stdout}
|
|
Should Contain ${result.stdout} PASS: uow_lifecycle smoke test
|
|
Should Be Equal As Integers ${result.rc} 0
|