Initial automated tests for delete action (#298).

This commit is contained in:
2024-07-02 20:26:29 -07:00
parent 36197ce027
commit 2dca5e1834
6 changed files with 433 additions and 5 deletions

View File

@@ -155,8 +155,8 @@ the following deviations from it:
* Favor blank lines around logical code groupings, `if` statements,
`return`s, etc. Readability is more important than packing code tightly.
* Import fully qualified Python modules instead of importing individual
functions, classes, or constants (e.g., do `import os.path` instead of
`from os import path`).
functions, classes, or constants. E.g., do `import os.path` instead of
`from os import path`. (Some exceptions to this are made in tests.)
borgmatic code uses the [Black](https://black.readthedocs.io/en/stable/) code
formatter, the [Flake8](http://flake8.pycqa.org/en/latest/) code checker, and