# Test workflow where job fails because input file is missing
# Tests: error detection before job starts (MissingInputException)

rule all:
    input: "output/result.txt"

rule needs_missing_input:
    input: "nonexistent/file/that/does/not/exist.txt"
    output: "output/result.txt"
    shell: "cat {input} > {output}"
