()
| 680 | |
| 681 | #[test] |
| 682 | fn test_edit_ok() { |
| 683 | Tester::default() |
| 684 | .set_program(Some("foo.bas"), "previous\n") |
| 685 | .add_input_chars("new line\n") |
| 686 | .run("EDIT") |
| 687 | .expect_program(Some("foo.bas"), "previous\nnew line\n") |
| 688 | .check(); |
| 689 | } |
| 690 | |
| 691 | #[test] |
| 692 | fn test_edit_errors() { |
nothing calls this directly
no test coverage detected