Skip to content

Instantly share code, notes, and snippets.

@Lemonlemmings
Created June 14, 2020 15:42
Show Gist options
  • Save Lemonlemmings/c6b33ea88e68327cc63afd5c6c793f26 to your computer and use it in GitHub Desktop.
Save Lemonlemmings/c6b33ea88e68327cc63afd5c6c793f26 to your computer and use it in GitHub Desktop.
*** 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