(self, tmp_path)
| 132 | assert i.command_filename("plan") == "speckit.plan.md" |
| 133 | |
| 134 | def test_commands_dest(self, tmp_path): |
| 135 | i = StubIntegration() |
| 136 | dest = i.commands_dest(tmp_path) |
| 137 | assert dest == tmp_path / ".stub" / "commands" |
| 138 | |
| 139 | def test_commands_dest_no_config_raises(self, tmp_path): |
| 140 | class NoConfig(MarkdownIntegration): |
nothing calls this directly
no test coverage detected