Return whether an explicit Codex hooks file contains the complete, current Atomic hook set.
(&self, path: &Path)
| 173 | /// Return whether an explicit Codex hooks file contains the complete, |
| 174 | /// current Atomic hook set. |
| 175 | pub fn is_installed_at(&self, path: &Path) -> bool { |
| 176 | hooks_file_has_current_atomic_hooks(path) |
| 177 | } |
| 178 | |
| 179 | fn local_hooks_path(repo_root: &Path) -> PathBuf { |
| 180 | repo_root.join(CODEX_DIR).join(HOOKS_FILE) |
no test coverage detected