Render with the defaults.
(cookies)
| 52 | |
| 53 | @pytest.fixture |
| 54 | def bake_default(cookies): |
| 55 | """ |
| 56 | Render with the defaults. |
| 57 | """ |
| 58 | result = cookies.bake() |
| 59 | return _handle_cookiecutter_errors(result) |
| 60 | |
| 61 | |
| 62 | @pytest.fixture |
nothing calls this directly
no test coverage detected