Examples on.
(cookies)
| 61 | |
| 62 | @pytest.fixture |
| 63 | def bake_examples(cookies): |
| 64 | """ |
| 65 | Examples on. |
| 66 | """ |
| 67 | result = cookies.bake(extra_context={"include_example_code": "y", |
| 68 | "author_name": "test"}) |
| 69 | return _handle_cookiecutter_errors(result) |
| 70 | |
| 71 | |
| 72 | @pytest.fixture |
nothing calls this directly
no test coverage detected