mirror of
https://github.com/eyre-rs/eyre.git
synced 2025-09-27 13:01:29 +00:00

git-subtree-dir: color-eyre git-subtree-mainline: 0b24ae558f4779afccb1dfc4640c57d9922ff70e git-subtree-split: 4a7b4d6988c6b0da5e04e29c9d6e10595b5dc302
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());
|
|
}
|