()
| 457 | |
| 458 | #[test] |
| 459 | fn parse_multiline_works() { |
| 460 | let input = "\n hello\n world\n"; |
| 461 | let expected = vec!["hello", "world"]; |
| 462 | let output = parse_multiline(input); |
| 463 | assert_eq!(output, expected); |
| 464 | } |
| 465 | |
| 466 | #[test] |
| 467 | fn formatter_basic_example_works() { |
nothing calls this directly
no test coverage detected