()
| 6189 | |
| 6190 | #[test] |
| 6191 | fn workspace_backend_rejects_missing_s3_config() { |
| 6192 | let result = js_session_options_to_rust(Some(SessionOptions { |
| 6193 | workspace_backend: Some(JsWorkspaceBackend { |
| 6194 | kind: "s3".to_string(), |
| 6195 | root: None, |
| 6196 | s3: None, |
| 6197 | }), |
| 6198 | ..Default::default() |
| 6199 | })); |
| 6200 | |
| 6201 | assert!(result.is_err()); |
| 6202 | } |
| 6203 | |
| 6204 | #[test] |
| 6205 | fn s3_phase1_3_options_thread_through_to_core() { |
nothing calls this directly
no test coverage detected