Create a minimal spec-kit project directory.
(self, temp_dir: Path)
| 4043 | """Test multi-catalog stack support.""" |
| 4044 | |
| 4045 | def _make_project(self, temp_dir: Path) -> Path: |
| 4046 | """Create a minimal spec-kit project directory.""" |
| 4047 | project_dir = temp_dir / "project" |
| 4048 | project_dir.mkdir() |
| 4049 | (project_dir / ".specify").mkdir() |
| 4050 | return project_dir |
| 4051 | |
| 4052 | def _write_catalog_config(self, project_dir: Path, catalogs: list) -> None: |
| 4053 | """Write extension-catalogs.yml to project .specify dir.""" |
no outgoing calls
no test coverage detected