()
| 1434 | |
| 1435 | #[test] |
| 1436 | fn backend_respects_search_concurrency_override() { |
| 1437 | let cfg = S3BackendConfig::new("bucket", "ws", "AK", "SK") |
| 1438 | .enable_search(true) |
| 1439 | .search_concurrency(16); |
| 1440 | let backend = S3WorkspaceBackend::new(cfg); |
| 1441 | assert_eq!(backend.search_concurrency(), 16); |
| 1442 | } |
| 1443 | |
| 1444 | #[test] |
| 1445 | fn join_workspace_path_handles_root_and_nested_bases() { |
nothing calls this directly
no test coverage detected