mirror of
https://github.com/eyre-rs/eyre.git
synced 2025-09-29 22:11:55 +00:00
8 lines
132 B
Rust
8 lines
132 B
Rust
use color_eyre::install;
|
|
|
|
#[test]
|
|
fn double_install_should_not_panic() {
|
|
install().unwrap();
|
|
assert!(install().is_err());
|
|
}
|