()
| 121 | |
| 122 | #[test] |
| 123 | fn test_record_with_files_vec() { |
| 124 | let record = Record::new().with_files(vec!["src/main.rs", "src/lib.rs"]); |
| 125 | assert_eq!(record.files.len(), 2); |
| 126 | assert_eq!(record.files[0], "src/main.rs"); |
| 127 | assert_eq!(record.files[1], "src/lib.rs"); |
| 128 | } |
| 129 | |
| 130 | #[test] |
| 131 | fn test_record_with_files_strings() { |
nothing calls this directly
no test coverage detected