| Age | Commit message (Collapse) | Author |
|
form_index is too big.
|
|
raise an error for unbound forms/formsets.
|
|
|
|
|
|
In these cases Black produces unexpected results, e.g.
def make_random_password(
self,
length=10,
allowed_chars='abcdefghjkmnpqrstuvwxyz' 'ABCDEFGHJKLMNPQRSTUVWXYZ' '23456789',
):
or
cursor.execute("""
SELECT ...
""",
[table name],
)
|
|
SimpleTestCase.assertFormError()/assertFormsetErrors().
|
|
TestCase.captureOnCommitCallbacks().
Regression in d89f976bddb49fb168334960acc8979c3de991fa.
|
|
assertTemplateUsed()/assertTemplateNotUsed() used as context managers.
|
|
named "form".
Thanks OutOfFocus4 for the report.
Regression in 456466d932830b096d39806e291fe23ec5ed38d5.
|
|
raise ValueError for non test client responses.
|
|
|
|
disallowed databases in tests.
|
|
|
|
compared to string values.
Per deprecation timeline.
|
|
recursively.
|
|
by assertHTMLEqual().
|
|
attributes value.
|
|
|
|
|
|
|
|
This also replaces assertQuerysetEqual() to
assertSequenceEqual()/assertCountEqual() where appropriate.
Co-authored-by: Peter Inglesby <peter.inglesby@gmail.com>
Co-authored-by: Mariusz Felisiak <felisiak.mariusz@gmail.com>
|
|
elements.
Previously examples such as '<a/><b/>' would not match in '<a/><b/><c/>'.
|
|
Cleanups from addCleanup() are scheduled to happen in reverse order to
the order they are added (LIFO). Ensures each cleanup is executed from
the innermost to the outermost.
|
|
|
|
|
|
assertXMLEqual()/assertXMLNotEqual().
|
|
|
|
|
|
|
|
Support for the following tags was added: area, embed, param, track, and
wbr.
The full list of self closing tags is documented at:
https://html.spec.whatwg.org/#void-elements
|
|
class attribute.
|
|
|
|
|
|
Follow up to 253adc2b8a52982139d40c4f55b3fd446e1cb8f3.
|
|
|
|
Regression in 24959e48d949a20be969f649ece3576dbc7ce422.
|
|
disallowing queries.
Database features may require a connection to be established to determine
whether or not they are enabled.
|
|
tests.
Mocking connect as well as cursor methods makes sure an appropriate error
message is surfaced when running a subset of test attempting to access a
a disallowed database.
|
|
favor of databases.
|
|
|
|
|
|
|
|
an exception.
|
|
their query strings.
|
|
|
|
|
|
|
|
|
|
Thanks Tim Graham for the test part.
|
|
|