organic/src/lib.rs
Tom Alexander 72c8da94a3
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.
2023-04-18 23:50:58 -04:00

9 lines
209 B
Rust

#![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;