(&self)
| 287 | } |
| 288 | |
| 289 | pub(crate) fn runtime_root(&self) -> PathBuf { |
| 290 | self.pgroot.join("pglite") |
| 291 | } |
| 292 | |
| 293 | pub fn with_temp_dir() -> Result<(TempDir, Self)> { |
| 294 | let tmp = TempDir::new().context("create temporary directory")?; |
no test coverage detected