Add several tests to dev/test, router handlers and syntax tokens
Some checks are pending
/ verify (push) Waiting to run

This commit is contained in:
Juno Takano 2026-03-21 15:44:17 -03:00
commit 6180bb371f
20 changed files with 456 additions and 10 deletions

View file

@ -73,5 +73,8 @@ mod tests {
fn flatten() {
let oblique = Oblique::new(false);
assert_eq!(oblique.flatten(), "");
let token = Token::Oblique(oblique);
assert_eq!(token.flatten(), "");
}
}