()
| 400 | |
| 401 | #[test] |
| 402 | fn test_to_tracking_options_default() { |
| 403 | let cmd = Remove::new(vec!["file.txt".to_string()]); |
| 404 | let options = cmd.to_tracking_options(); |
| 405 | // TrackingOptions doesn't expose fields, so we just verify it doesn't panic |
| 406 | let _ = options; |
| 407 | } |
| 408 | |
| 409 | #[test] |
| 410 | fn test_to_tracking_options_non_recursive() { |
nothing calls this directly
no test coverage detected