()
| 15 | } |
| 16 | |
| 17 | pub(crate) fn test_bootc_status() -> Result<()> { |
| 18 | let sh = Shell::new()?; |
| 19 | let host: serde_json::Value = serde_json::from_str(&cmd!(sh, "bootc status --json").read()?)?; |
| 20 | assert!(host.get("status").unwrap().get("ty").is_none()); |
| 21 | Ok(()) |
| 22 | } |
| 23 | |
| 24 | pub(crate) fn test_bootc_container_inspect() -> Result<()> { |
| 25 | let sh = Shell::new()?; |