Created
June 14, 2020 15:42
-
-
Save Lemonlemmings/c6b33ea88e68327cc63afd5c6c793f26 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
*** Settings *** | |
Documentation Suite description | |
Library OperatingSystem | |
Suite Setup Create File ${test file path} | |
Suite Teardown Remove file ${test file path} | |
*** Variables *** | |
${test file path}= ./test.txt | |
*** Test Cases *** | |
Find the file | |
check file exists | |
Fill file with content | |
append to file ${test file path} testing 123 | |
*** Keywords *** | |
Check file exists | |
should exist ${test file path} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment