()
| 274 | |
| 275 | #[test] |
| 276 | fn test_build_options_default() { |
| 277 | let record = Record::new(); |
| 278 | let result = record.build_options(); |
| 279 | assert!(result.is_ok()); |
| 280 | let options = result.unwrap(); |
| 281 | assert!(!options.all()); |
| 282 | assert!(!options.skip_binary()); |
| 283 | } |
| 284 | |
| 285 | #[test] |
| 286 | fn test_build_options_with_all() { |
nothing calls this directly
no test coverage detected