()
| 336 | |
| 337 | #[test] |
| 338 | fn float() { |
| 339 | parses_to! { |
| 340 | parser: JsonParser, |
| 341 | input: "100.001", |
| 342 | rule: Rule::number, |
| 343 | tokens: [ |
| 344 | number(0, 7) |
| 345 | ] |
| 346 | }; |
| 347 | } |
| 348 | |
| 349 | #[test] |
| 350 | fn float_with_exp() { |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…