Remove un-needed test.

This commit is contained in:
Jesse Brault 2025-10-29 12:14:52 -05:00
parent e5c5be6d95
commit 9b83a531ca

View File

@ -174,22 +174,6 @@ pub mod pretty_print {
pub mod ast_node {
include!(concat!(env!("OUT_DIR"), "/src/ast/ast_node.rs"));
#[cfg(test)]
mod tests {
use crate::ast::ast_node::AstNode;
use crate::ast::node::CompilationUnit;
fn get_cu() -> CompilationUnit {
todo!()
}
#[test]
fn simple() {
let cu = get_cu();
for child in cu.children() {}
}
}
}
pub mod walk {