use sigil_stitch::code_block::CodeBlock;
use sigil_stitch::lang::rust_lang::RustLang;
use sigil_stitch::prelude::*;
use sigil_stitch::spec::file_spec::FileSpec;
use super::golden;
fn render(block: &CodeBlock) -> String {
FileSpec::builder_with("test.rs", RustLang::new())
.add_code(block.clone())
.build()
.unwrap()
.render(80)
.unwrap()
}
#[test]
fn test_basic() {
let block = sigil_quote!(RustLang {
let x: i32 = 42;
let name = $S("Alice");
println!($S("{}: {}"), name, x);
})
.unwrap();
golden::assert_golden("rust/macro_basic.rs", &render(&block));
}