aboutsummaryrefslogtreecommitdiffstats
path: root/tests/create_directories.rs (unfollow)
Commit message (Collapse)AuthorFilesLines
2025-03-07Reformat everything with Rust 2024 editionSven-Hendrik Haase1-30/+40
2025-02-06Make symlinks into global fixturesSven-Hendrik Haase1-15/+4
So far, tests had to create their own symlinks which made them less concise. Also, now that we always have symlinks in all tests, side effects of having them won't go undetected.
2025-01-10Reorganize imports to be more consistentSven-Hendrik Haase1-7/+11
2022-12-19Fix lintsSven-Hendrik Haase1-2/+2
2022-06-26Create directory (#781)Sheepy1-0/+163
* Add ability to make directory Frontend for making directories Fix potential security vulnerability (CWE-23) Add tests Update README.md Disallow using parent directories altogether Fix formatting Fix clippy warnings Address review comments Update README.md Change `making` to `creation` Co-authored-by: Sven-Hendrik Haase <svenstaro@gmail.com> Have make directory flag require file upload flag Address review comments * Disallow uploading files and making directories through symlinks when disabled * Add test * Clippy formatting changes * Add test doc comment