add thiserror to edn module; 38.57% total cov

This commit is contained in:
🪞👃🪞 2025-02-26 15:09:44 +02:00
parent 77d617f9a0
commit 3837dbd47b
7 changed files with 66 additions and 36 deletions

View file

@ -25,5 +25,8 @@ pub(crate) type Perhaps<T> = Result<Option<T>, Box<dyn Error>>;
}
fn done (&self) {}
}
let _ = TestInput(true).event();
assert!(TestInput(true).is_done());
assert!(!TestInput(false).is_done());
Ok(())
}