()
| 284 | |
| 285 | #[test] |
| 286 | fn test_build_options_with_all() { |
| 287 | let record = Record::new().with_all(true); |
| 288 | let result = record.build_options(); |
| 289 | assert!(result.is_ok()); |
| 290 | let options = result.unwrap(); |
| 291 | assert!(options.all()); |
| 292 | } |
| 293 | |
| 294 | #[test] |
| 295 | fn test_build_options_with_files() { |
nothing calls this directly
no test coverage detected