()
| 3406 | |
| 3407 | #[test] |
| 3408 | fn test_split_lines_trailing_newline() { |
| 3409 | let lines = split_lines("hello\n"); |
| 3410 | assert_eq!(lines.len(), 2); |
| 3411 | assert_eq!(lines[0], (0, "hello")); |
| 3412 | assert_eq!(lines[1], (6, "")); |
| 3413 | } |
| 3414 | |
| 3415 | #[test] |
| 3416 | fn test_move_up_down() { |
nothing calls this directly
no test coverage detected