forked from cleveragents/cleveragents-core
18 lines
647 B
Plaintext
18 lines
647 B
Plaintext
*** Settings ***
|
|
Documentation Smoke test for LifecyclePlanRepository CRUD operations
|
|
Library Process
|
|
Library OperatingSystem
|
|
Library String
|
|
|
|
*** Variables ***
|
|
${PYTHON} python
|
|
|
|
*** Test Cases ***
|
|
Plan Repository CRUD Via Helper Script
|
|
[Documentation] Create, retrieve, list, count, and delete a plan via LifecyclePlanRepository
|
|
${result}= Run Process ${PYTHON} ${CURDIR}/helper_plan_repository.py
|
|
... stderr=STDOUT timeout=30s
|
|
Log ${result.stdout}
|
|
Should Contain ${result.stdout} PASS: plan_repository smoke test
|
|
Should Be Equal As Integers ${result.rc} 0
|