()
| 566 | |
| 567 | #[test] |
| 568 | fn test_copy_ok() { |
| 569 | Tester::default() |
| 570 | .set_program(Some("foo.bas"), "Leave me alone") |
| 571 | .write_file("file1", "the content") |
| 572 | .run(r#"COPY "file1", "file2""#) |
| 573 | .expect_program(Some("foo.bas"), "Leave me alone") |
| 574 | .expect_file("MEMORY:/file1", "the content") |
| 575 | .expect_file("MEMORY:/file2", "the content") |
| 576 | .check(); |
| 577 | } |
| 578 | |
| 579 | #[test] |
| 580 | fn test_copy_deduce_target_name() { |
nothing calls this directly
no test coverage detected