Hook the integration tests into rust's test framework.

Instead of using a hacked-together shell script, use rust's test framework to do the comparison.
This commit is contained in:
Tom Alexander
2023-04-18 22:38:18 -04:00
parent fba80f4f7b
commit 72c8da94a3
6 changed files with 96 additions and 1 deletions

8
src/lib.rs Normal file
View File

@@ -0,0 +1,8 @@
#![feature(round_char_boundary)]
#![feature(exit_status_error)]
mod parser;
mod compare;
pub use parser::*;
pub use compare::emacs_parse_org_document;
pub use compare::sexp;
pub use compare::compare_document;