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
xunit.any_date
xunit.any_datetime
to_date
This
def any_date(from_date=date(1990, 1, 1), to_date=date.today()):
is not a very good idea. If the code runs for a lot of time, to_date won't be changing. At it makes documentation misleading:
django_any.xunit.any_date(from_date=datetime.date(1990, 1, 1), to_date=datetime.date(2012, 5, 3))
Seems like a strange default choice for to_date. :-)
The text was updated successfully, but these errors were encountered:
Pull request #33
Sorry, something went wrong.
No branches or pull requests
This
is not a very good idea. If the code runs for a lot of time,
to_date
won't be changing. At it makes documentation misleading:Seems like a strange default choice for
to_date
. :-)The text was updated successfully, but these errors were encountered: