restructure integration tests

This commit is contained in:
2026-01-01 03:33:54 -07:00
parent 9966009500
commit f5a28dfd6d
31 changed files with 1011 additions and 189 deletions

View File

@@ -789,7 +789,7 @@ documented! {
/// }
/// ```
Continue,
/// Prepresents the `const` keyword. This allows you to define a variable that will never
/// Represents the `const` keyword. This allows you to define a variable that will never
/// change throughout the lifetime of the program, similar to `define` in IC10. If you are
/// not planning on mutating the variable (changing it), it is recommend you store it as a
/// const, as the compiler will not assign it to a register or stack variable.
@@ -931,7 +931,10 @@ mod tests {
let tokens = lexer.collect::<Vec<_>>();
assert!(!tokens.iter().any(|res| res.is_err()));
assert!(
!tokens.iter().any(|res| res.is_err()),
"Expected no lexing errors for CRLF endings"
);
Ok(())
}