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
Tests should use randomized data to be repeatable.
We should use an API such as Faker.
For instance:
self.user_only_username = User.objects.create(username='userOnlyUsername')
May be:
from faker import Faker faker = Faker('fr_FR') self.user_only_username = User.objects.create(username=faker.user_name())
The text was updated successfully, but these errors were encountered:
Work in progress on the branch moreTests.
Sorry, something went wrong.
AlexandrePalo
Eyap53
No branches or pull requests
Tests should use randomized data to be repeatable.
We should use an API such as Faker.
For instance:
May be:
The text was updated successfully, but these errors were encountered: