Couple more tests

This commit is contained in:
greg 2016-01-09 00:09:48 -08:00
parent 8c65ae3214
commit b4f93acbd8
1 changed files with 5 additions and 0 deletions

View File

@ -147,5 +147,10 @@ mod tests {
tokentest!("2 + 1",
"[NumLiteral(2), Identifier(\"+\"), NumLiteral(1), EOF]");
tokentest!("2.3*49.2",
"[NumLiteral(2.3), Identifier(\"*\"), NumLiteral(49.2), EOF]");
assert_eq!(tokenize("2.4.5"), None);
}
}