()
| 575 | } |
| 576 | |
| 577 | fn project_path() -> PathBuf { |
| 578 | current_dir() |
| 579 | .unwrap() |
| 580 | // We canonicalize so that it doesn't matter where the cwd is. |
| 581 | .canonicalize() |
| 582 | .unwrap() |
| 583 | .join("tests/integration/project") |
| 584 | } |
| 585 | |
| 586 | fn prqlc_command() -> Command { |
| 587 | let mut cmd = Command::new(get_cargo_bin("prqlc")); |
no outgoing calls
no test coverage detected