()
| 931 | |
| 932 | #[test] |
| 933 | fn test_input_propagates_eof_as_error() { |
| 934 | Tester::default() |
| 935 | .add_input_keys(&[Key::EofOrDelete]) |
| 936 | .run("INPUT a") |
| 937 | .expect_err("1:1: EOF") |
| 938 | .check(); |
| 939 | } |
| 940 | |
| 941 | #[test] |
| 942 | fn test_locate_ok() { |
nothing calls this directly
no test coverage detected