We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hint: Page numbers change all the time. The best way to report an issue is by chapter, section, and subsection numbers.
The section 53.4 instructs the reader to add the following snippet to test_views.py:
test_views.py
@pytest.fixture def user(): return UserFactory()
This is redundant because the fixture user() is already defined in conftest.py. The conftest.py is provided by django-crash-starter.
user()
conftest.py
Instruct the reader to refer to the fixture user() in conftest.py.
Hyunsu Cho
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Location within the Book
Hint: Page numbers change all the time. The best way to report an issue is by chapter, section, and subsection numbers.
Description
The section 53.4 instructs the reader to add the following snippet to
test_views.py
:This is redundant because the fixture
user()
is already defined inconftest.py
. Theconftest.py
is provided by django-crash-starter.Possible Solutions
Instruct the reader to refer to the fixture
user()
inconftest.py
.Your full name so we can provide accurate credit within the book
Hyunsu Cho
The text was updated successfully, but these errors were encountered: