blob: 032f87b0188cc6b97849a3fcee66d455a0b2d525 [file] [log] [blame]
*** Settings ***
Suite Setup Get Test Cases
*** Variables ***
@{scripts_path}= ${CURDIR}/../../scripts
@{pattern}= *.resc
@{excludes}= complex
*** Keywords ***
Get Test Cases
Setup
@{scripts}= List Files In Directory Recursively @{scripts_path} @{pattern} @{excludes}
Set Suite Variable @{scripts}
Load Script
[Arguments] ${path}
Execute Script ${path}
*** Test Cases ***
Should Load Demos
FOR ${script} IN @{scripts}
Load Script ${script}
Reset Emulation
END