test(parser): move over the validator tests and some misc tests to parser

This commit is contained in:
rvcas
2023-07-03 15:09:31 -04:00
parent 6b05d6a91e
commit bd8c13c372
15 changed files with 227 additions and 272 deletions

View File

@@ -49,8 +49,6 @@ pub fn parser<'a>(
#[cfg(test)]
mod tests {
use chumsky::Parser;
use crate::assert_expr;
#[test]

View File

@@ -17,8 +17,6 @@ pub fn parser() -> impl Parser<Token, UntypedExpr, Error = ParseError> {
#[cfg(test)]
mod tests {
use chumsky::Parser;
use crate::assert_expr;
#[test]

View File

@@ -30,8 +30,6 @@ pub fn parser(
#[cfg(test)]
mod tests {
use chumsky::Parser;
use crate::assert_expr;
#[test]