-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtests.robot
34 lines (26 loc) · 880 Bytes
/
tests.robot
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
*** Settings ***
Documentation Robot Framework boilerplate
Library Collections
Library OperatingSystem
Library SSHLibrary
Library String
Resource resources/filesystem_management.robot
Resource resources/general.robot
Resource resources/host_management.robot
Resource resources/logging.robot
Resource resources/process_management.robot
Resource resources/service_management.robot
Resource resources/ssh_connectivity.robot
Variables ./environment.yaml
Suite Setup Suite Setup
Suite Teardown Suite Teardown
*** Test Cases ***
Test-Case-1-Testing-Framework-Works
Start Up
Wrap Up
Test-Case-2-Remote-Hosts-Are-Linux-Distributions
Start Up
:FOR ${host} IN @{HOST_LIST}
\ ${output} = Run Command On Remote Host cat /proc/version | cut -d ' ' -f 1 ${host}
\ Should Be Equal As Strings ${output} Linux
Wrap Up