@cmaiacd ● If a default value is changed, all tests that depend on it will break ● The setup of a test should contain all the logic to ensure it will always pass ● Explicit better than implicit
@cmaiacd If we want to have an author, we can use PollFactory(with_author=True) now When are we going to remember to test the case PollFactory(author=None)? We should not assume there is an author when DB actually allows to not have it.
@cmaiacd SubFactory: builds/creates the SubFactory during the process of creation of the main factory RelatedFactory: builds/creates the RelatedFactory after creating the main factory