(&self)
| 268 | |
| 269 | impl Fixture { |
| 270 | fn db_path(&self) -> PathBuf { |
| 271 | tracedecay::storage::resolve_layout(&self.project_path, &self.home_path.join(".tracedecay")) |
| 272 | .expect("resolve fixture storage layout") |
| 273 | .graph_db_path |
| 274 | } |
| 275 | |
| 276 | fn command(&self) -> Command { |
| 277 | let mut command = Command::new(env!("CARGO_BIN_EXE_tracedecay")); |
no test coverage detected