augh/
lib.rs

1pub use std::panic as augh;
2
3#[cfg(test)]
4mod tests {
5    #[test]
6    #[should_panic(expected = "explicit panic")]
7    fn test_augh() {
8        crate::augh!()
9    }
10
11    #[test]
12    #[should_panic(expected = "sple")]
13    fn test_augh_with_message() {
14        crate::augh!("sple")
15    }
16}