feat: add more tests

Signed-off-by: kjuulh <contact@kjuulh.io>
This commit is contained in:
2024-05-20 20:55:54 +02:00
parent f04b0a2e54
commit f0b4c91c63
15 changed files with 19 additions and 2 deletions

View File

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

View File

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

View File

@@ -10,3 +10,16 @@ async fn raw_files() -> anyhow::Result<()> {
Ok(())
}
#[tokio::test]
async fn template_files() -> anyhow::Result<()> {
run_test("template_files").await?;
Ok(())
}
#[tokio::test]
async fn both() -> anyhow::Result<()> {
run_test("both").await?;
Ok(())
}