diff options
author | Robin Appelman <robin@icewind.nl> | 2022-06-27 17:45:23 +0200 |
---|---|---|
committer | Robin Appelman <robin@icewind.nl> | 2022-06-30 15:52:33 +0200 |
commit | d6e35dfe2cb792d13fc25a8d527369143fea4a6e (patch) | |
tree | 16744e6d04a45f7c9210f9d49568700b5806e7cb /tests | |
parent | 5d3e86a1c63fe4cdd09b0877076e21a056d74155 (diff) | |
download | nextcloud-server-d6e35dfe2cb792d13fc25a8d527369143fea4a6e.tar.gz nextcloud-server-d6e35dfe2cb792d13fc25a8d527369143fea4a6e.zip |
use blueprint from repo
Signed-off-by: Robin Appelman <robin@icewind.nl>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/blueprints/basic.toml | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/tests/blueprints/basic.toml b/tests/blueprints/basic.toml new file mode 100644 index 00000000000..28902fd5708 --- /dev/null +++ b/tests/blueprints/basic.toml @@ -0,0 +1,20 @@ +[[user]] +id = "test" +groups = ["test_group"] +files = [ + "test.txt", + "foo/sub.png", + "empty", +] + +[[user]] +id = "test2" +groups = ["test"] +files = [ + "many_files/file_[1..100].txt" +] + +[[share]] +from = "test2" +to = "test" +file = "many_files" |