()
| 890 | |
| 891 | #[tokio::test] |
| 892 | async fn test_share_print_no_acls() { |
| 893 | let mut t = ClientTester::default(); |
| 894 | t.get_storage().borrow_mut().put("MEMORY:/FOO", b"").await.unwrap(); |
| 895 | t.run(r#"SHARE "MEMORY:/FOO""#) |
| 896 | .expect_prints(["", " No ACLs on MEMORY:/FOO", ""]) |
| 897 | .expect_file("MEMORY:/FOO", "") |
| 898 | .check(); |
| 899 | } |
| 900 | |
| 901 | #[tokio::test] |
| 902 | async fn test_share_print_some_acls() { |
nothing calls this directly
no test coverage detected