(project_cli_runner, flag, expect)
| 117 | ], |
| 118 | ) |
| 119 | def test_project_info_path_flags(project_cli_runner, flag, expect): |
| 120 | tree_dir = os.getcwd() |
| 121 | result = project_cli_runner.invoke(cli, ["project-info", flag]) |
| 122 | assert result.exit_code == 0 |
| 123 | assert result.stdout.rstrip() == expect.format( |
| 124 | tree_dir=tree_dir, |
| 125 | output_path=Project.from_path(tree_dir).get_output_path(), |
| 126 | os=os, |
| 127 | ) |
nothing calls this directly
no test coverage detected