()
| 992 | |
| 993 | #[test] |
| 994 | fn test_options_include_deleted() { |
| 995 | let opts = FileOutputOptions::new().include_deleted(true); |
| 996 | |
| 997 | assert!(opts.include_deleted); |
| 998 | } |
| 999 | |
| 1000 | #[test] |
| 1001 | fn test_options_include_deleted_false() { |
nothing calls this directly
no test coverage detected