()
| 777 | |
| 778 | #[tokio::test] |
| 779 | async fn test_logout_ok_cloud_not_mounted() { |
| 780 | let mut t = ClientTester::default(); |
| 781 | t.get_service().borrow_mut().do_login().await; |
| 782 | t.run(r#"LOGOUT"#).expect_prints(["", " Good bye!", ""]).check(); |
| 783 | assert!(!t.get_storage().borrow().mounted().contains_key("CLOUD")); |
| 784 | } |
| 785 | |
| 786 | #[tokio::test] |
| 787 | async fn test_logout_ok_unmount_cloud() { |
nothing calls this directly
no test coverage detected