kjuulh f0b4c91c63
feat: add more tests
Signed-off-by: kjuulh <contact@kjuulh.io>
2024-05-20 20:55:54 +02:00

26 lines
394 B
Rust

pub mod common;
mod can_run_for_env;
use crate::common::run_test;
#[tokio::test]
async fn raw_files() -> anyhow::Result<()> {
run_test("raw_files").await?;
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(())
}