()
| 583 | |
| 584 | #[test] |
| 585 | fn test_debug() { |
| 586 | let opts = OutputOptions::new().with_prefix("test/"); |
| 587 | let debug_str = format!("{:?}", opts); |
| 588 | |
| 589 | assert!(debug_str.contains("OutputOptions")); |
| 590 | assert!(debug_str.contains("test/")); |
| 591 | } |
| 592 | } |
nothing calls this directly
no test coverage detected