1# ==== Purpose ====
2#
3# Checks that a given file does not exist. If the file exists, the
4# test fails.
5#
6# ==== Usage ====
7#
8# --let $file_does_not_exist= /path/to/file
9# --source include/file_does_not_exist.inc
10
11# Will fail if file exists.
12--write_file $file_does_not_exist
13tmp
14EOF
15
16# Remove file again.
17--remove_file $file_does_not_exist
18