use aok::{Result, OK};
use static_init::constructor;
#[constructor(0)]
extern "C" fn init() {
loginit::init()
}
#[test]
fn test() -> Result<()> {
let txt = "123 \r\n45\r 6 \n\n";
let r = refmt::str(txt);
assert_eq!(r, ("123\n45\n 6".to_owned(), true));
dbg!(r);
OK
}