Crates.io | soft |
lib.rs | soft |
version | 0.1.1 |
source | src |
created_at | 2021-09-21 12:42:57.759274 |
updated_at | 2021-11-15 10:54:50.714941 |
description | Provides soft, non-panicking assertions. |
homepage | |
repository | https://github.com/fabianboesiger/soft |
max_upload_size | |
id | 454382 |
size | 8,687 |
This library provides soft, non-panicking assertions.
Instead, the assertions provided by this crate return a Result
.
To use this crate, simply replace assert!(...)
by soft::assert!(...)?
.
fn main() {
soft::panic!(false).unwrap_err();
soft::assert!(true).unwrap();
soft::assert!(false).unwrap_err();
soft::assert_eq!(2, 2).unwrap();
soft::assert_eq!(2, 3).unwrap_err();
soft::assert_ne!(2, 3).unwrap();
soft::assert_ne!(2, 2).unwrap_err();
}