mod test {
use teo_parser::diagnostics::printer::print_diagnostics;
use teo_parser::parse;
#[test]
fn get_handler_with_arguments_should_error() {
let path_buf = std::env::current_dir().unwrap().join("tests/parse/handler_template_inclusion/schemas/01.teo");
let path = path_buf.to_str().unwrap();
let (_, diagnostics) = parse(path, None, None);
print_diagnostics(&diagnostics, true);
assert_eq!(diagnostics.has_errors(), false);
assert_eq!(diagnostics.has_warnings(), false);
}
}