Convenience function to instantiate a `FileAcls` with the `r` readers.
(r: &[&str])
| 124 | |
| 125 | /// Convenience function to instantiate a `FileAcls` with the `r` readers. |
| 126 | fn readers(r: &[&str]) -> FileAcls { |
| 127 | FileAcls::default().with_readers(r.iter().map(|x| x.to_string()).collect::<Vec<String>>()) |
| 128 | } |
| 129 | |
| 130 | #[tokio::test] |
| 131 | async fn test_inmemorydrive_put_respects_acls() { |