()
| 695 | |
| 696 | #[test] |
| 697 | fn test_list_ok() { |
| 698 | Tester::default().run("LIST").check(); |
| 699 | |
| 700 | Tester::default() |
| 701 | .set_program(None, "one\n\nthree\n") |
| 702 | .run("LIST") |
| 703 | .expect_prints(["one", "", "three"]) |
| 704 | .expect_program(None as Option<&str>, "one\n\nthree\n") |
| 705 | .check(); |
| 706 | } |
| 707 | |
| 708 | #[test] |
| 709 | fn test_list_paging() { |
nothing calls this directly
no test coverage detected