()
| 307 | |
| 308 | #[test] |
| 309 | fn negative_values() { |
| 310 | let line = parse_line("temp,loc=outside value=-12.5 1000").unwrap(); |
| 311 | assert_eq!(line.fields[0].1, FieldValue::Float(-12.5)); |
| 312 | } |
| 313 | |
| 314 | #[test] |
| 315 | fn scientific_notation() { |
nothing calls this directly
no test coverage detected