[go: up one dir, main page]

color-eyre 0.6.5

An error report handler for panics and eyre::Reports for colorful, consistent, and well formatted error reports for all kinds of errors.
Documentation
1
2
3
4
5
6
7
use color_eyre::install;

#[test]
fn double_install_should_not_panic() {
    install().unwrap();
    assert!(install().is_err());
}