()
| 270 | |
| 271 | #[test] |
| 272 | fn test_sandbox_context_metadata() { |
| 273 | let ctx = test_sandbox_context(); |
| 274 | let meta = ctx.metadata(&["security_control", "container"]); |
| 275 | assert_eq!(meta.version, "1.7.0"); |
| 276 | assert_eq!(meta.product.name, "OpenShell Sandbox Supervisor"); |
| 277 | assert_eq!(meta.profiles.len(), 2); |
| 278 | assert_eq!(meta.uid.as_deref(), Some("sandbox-abc123")); |
| 279 | } |
| 280 | |
| 281 | #[test] |
| 282 | fn test_sandbox_context_container() { |
nothing calls this directly
no test coverage detected