()
| 430 | |
| 431 | #[test] |
| 432 | fn test_autoexec_missing() { |
| 433 | let tester = Tester::default(); |
| 434 | let (console, storage) = (tester.get_console(), tester.get_storage()); |
| 435 | let mut continuation = tester.continue_from_here(); |
| 436 | block_on(try_load_autoexec(continuation.get_machine(), console, storage)).unwrap(); |
| 437 | continuation.run("").check(); |
| 438 | } |
| 439 | |
| 440 | /// Factory for drives that mimic the behavior of a cloud drive with fixed contents. |
| 441 | struct MockDriveFactory { |
nothing calls this directly
no test coverage detected