Added another complex stlg test file

This commit is contained in:
2025-12-31 14:12:19 -07:00
parent 2a5dfd9ab6
commit 5f4335dbcc
3 changed files with 168 additions and 0 deletions

View File

@@ -212,4 +212,11 @@ mod tests {
let output = compile_with_and_without_optimization(source);
insta::assert_snapshot!(output);
}
#[test]
fn test_reagent_processing() {
let source = include_str!("./test_files/reagent_processing.stlg");
let output = compile_with_and_without_optimization(source);
insta::assert_snapshot!(output);
}
}