@@ -6,32 +6,33 @@ Documentation
66Library Operating System
77
88*** Variables ***
9- ${PORT} 8271
9+ ${SIMPLE PORT} 8271
10+ ${LIBRARY STARTED} no
1011
1112*** Test Cases ***
1213Remote keywords do not exist if remote server is not running
13- [Documentation] FAIL No keyword with name 'KW 1' found.
14- KW 1 Does not work yet
14+ [Documentation] FAIL No keyword with name 'KW 1' found.
15+ KW 1 Does not work yet
1516
1617Start And Import Remote Library
17- Start Process python ${CURDIR}${/}simplelibrary.py ${PORT}
18- Import Library Remote localhost:${PORT}
19- Set Suite Variable $ LIBRARY STARTED OK we actually should not require value here
20- KW 1 Now this works!
18+ Start Process python ${CURDIR}${/}simplelibrary.py ${SIMPLE PORT}
19+ Import Library Remote localhost:${SIMPLE PORT}
20+ Set Suite Variable ${ LIBRARY STARTED} yes
21+ KW 1 Now this works!
2122
2223Keywords From Simple Library
2324 [Documentation] FAIL My error message
24- ${ret} = KW 1
25- Should Be Equal ${ret} ${EMPTY}
26- ${ret} = KW 1 Hello world!
27- Should Be Equal ${ret} Hello world!
28- KW 2 My error message
25+ ${ret} = KW 1
26+ Should Be Equal ${ret} ${EMPTY}
27+ ${ret} = KW 1 Hello world!
28+ Should Be Equal ${ret} Hello world!
29+ KW 2 My error message
2930
3031Stop Remote Library
3132 [Documentation] FAIL Connection to remote server broken: Connection refused
32- Variable Should Exist $ LIBRARY STARTED OK
33+ Should Be Equal ${ LIBRARY STARTED} yes
3334 Stop Remote Server
34- ${out} = Read Process Output
35- Log ${out}
36- KW 1 This won't work anymore
35+ ${out} = Read Process Output
36+ Log ${out}
37+ KW 1 This won't work anymore
3738
0 commit comments