feat: can recursively load files

Signed-off-by: kjuulh <contact@kjuulh.io>
This commit is contained in:
2024-05-21 21:46:22 +02:00
parent 06ad4515c2
commit 461f8acb73
16 changed files with 83 additions and 18 deletions

View File

@@ -0,0 +1,2 @@
cuddle/clusters:
dev:

View File

@@ -0,0 +1 @@
nested

View File

@@ -0,0 +1 @@
nested

View File

@@ -0,0 +1 @@
service

View File

@@ -0,0 +1 @@
service

View File

@@ -0,0 +1 @@
service

View File

@@ -0,0 +1 @@
service

View File

@@ -0,0 +1 @@
service

View File

@@ -0,0 +1 @@
service

View File

@@ -0,0 +1 @@
service

View File

@@ -0,0 +1 @@
service

View File

@@ -27,6 +27,13 @@ async fn both() -> anyhow::Result<()> {
Ok(())
}
#[tokio::test]
async fn nested() -> anyhow::Result<()> {
run_test("nested").await?;
Ok(())
}
#[tokio::test]
async fn jinja() -> anyhow::Result<()> {
run_test("jinja").await?;