/fuzz-template

Template files for Woke fuzz tests. See readme.md

Primary LanguagePython

  1. > gh repo clone https://www.github.com/hacker-DOM/fuzz-template

  2. Copy woke_tests, justfile pyproject.toml into your own repository

function doms_fuzz_template() {
    local path_to_template="$HOME/blablabla"

    # ===== COPY JUSTFILE =====
    \cp -i "$path_to_template/justfile" .

    # ===== COPY PYPROJECT.TOML =====
    \cp -i "$path_to_template/pyproject.toml" .

    # ===== COPY WOKE TESTS =====
    \cp -i -r "$path_to_template/woke_tests" .
}
  1. Have fun!!!