I am Trying to figure out how to write a test suite for my cookiecutter template.
after looking at the tests for the cookiecutter-django template in cookiecutter-django/tests/test_cookiecutter_generation.py
I see that most of the test functions take a parameter called cookies
. Within the test functions themselves there is a method call on whatever object is being passed in as the cookies parameter that is called bake
.
I would like to know what this object is and where it's imported from?