(run_command, console)
| 4 | from pathlib import Path |
| 5 | |
| 6 | def _has_brew(run_command, console) -> bool: |
| 7 | return run_command(["which", "brew"], console, check=False) is not None |
| 8 | |
| 9 | def _brew_install_neo4j(run_command, console) -> str: |
| 10 | if run_command(["brew", "install", "neo4j@5"], console, check=False): |
no test coverage detected