use crate::testing::*; use once_cell::sync::Lazy; use std::path::PathBuf; pub static DIR: Lazy = Lazy::new(|| { crate::testing::TESTS_DIR .join("render") .join("matter_with_markdown_comments") }); #[test] fn test() { test_with_base_path_and_default_template_input_output_expect(&DIR); }