()
| 264 | |
| 265 | #[test] |
| 266 | fn unsigned_int() { |
| 267 | let line = parse_line("disk bytes_free=1024u 1000").unwrap(); |
| 268 | assert_eq!(line.fields[0], ("bytes_free", FieldValue::UInt(1024))); |
| 269 | } |
| 270 | |
| 271 | #[test] |
| 272 | fn tags_sorted() { |
nothing calls this directly
no test coverage detected