()
| 573 | |
| 574 | #[test] |
| 575 | fn test_clone() { |
| 576 | let opts = OutputOptions::new().with_prefix("src/").salt(42); |
| 577 | |
| 578 | let cloned = opts.clone(); |
| 579 | |
| 580 | assert_eq!(cloned.prefix, opts.prefix); |
| 581 | assert_eq!(cloned.salt, opts.salt); |
| 582 | } |
| 583 | |
| 584 | #[test] |
| 585 | fn test_debug() { |
nothing calls this directly
no test coverage detected