summaryrefslogtreecommitdiff
path: root/django/test
AgeCommit message (Expand)Author
2012-07-24Fixed #18271 -- Changed stage at which TransactionTestCase flushes DB tables.Ramiro Morales
2012-07-22[py3] Switched to Python 3-compatible imports.Aymeric Augustin
2012-07-22[py3] Updated urllib/urllib2/urlparse imports.Aymeric Augustin
2012-07-22[py3] Replaced unicode/str by six.text_type/bytes.Aymeric Augustin
2012-07-22[py3] Replaced basestring by six.string_types.Aymeric Augustin
2012-07-22[py3] Fixed remaining Python 3 syntax errors.Aymeric Augustin
2012-07-22[py3] Switched to Python 3-compatible introspection.Aymeric Augustin
2012-07-22[py3] Used six.reraise wherever necessary.Aymeric Augustin
2012-07-21Made LiveServerTestCase to restore state on exit.Ramiro Morales
2012-07-21Fixed #18395 -- Reset language-related global variables with setting_changedClaude Paroz
2012-06-09Reverted 905e33f, now that DatabaseFeatures does not need confirmClaude Paroz
2012-06-07Fixed #18269 -- Applied unicode_literals for Python 3 compatibility.Claude Paroz
2012-05-25Fixed #17371 -- Made the test client more flexibleAymeric Augustin
2012-05-05Replaced cStringIO.StringIO by io.BytesIO.Claude Paroz
2012-05-05Made more extensive usage of context managers with open.Claude Paroz
2012-05-01Skip model validation when models are known good.Anssi Kääriäinen
2012-04-30Replaced print statement by print function (forward compatibility syntax).Claude Paroz
2012-04-29Fixed #18013 -- Use the new 'as' syntax for exceptions.Claude Paroz
2012-04-29Fixed #18023 -- Removed bundled simplejson.Aymeric Augustin
2012-04-29Simplified timezones tests with settings_changed.Aymeric Augustin
2012-04-24Fixed #17954 -- Fixed dependency checking for test databases. Thanks Łukasz ...Claude Paroz
2012-04-09Fixed #17848 -- Added setting_changed signal for cases when TEMPLATE_CONTEXT_...Claude Paroz
2012-03-31Removed deprecated DjangoTestRunner.Aymeric Augustin
2012-03-31Removed deprecated attribute Response.template in the test client. Refs #12226.Aymeric Augustin
2012-03-30Removed some Python < 2.6 compatibility code. Refs #17965.Aymeric Augustin
2012-03-30Removed with_statement imports, useless in Python >= 2.6. Refs #17965. Thanks...Claude Paroz
2012-03-15Reverted r16386 because it replaced a brittle method with another not lessRamiro Morales
2012-03-13Fixed #17882 (again) -- Updated the database connections' time zone when time...Aymeric Augustin
2012-03-13Fixed #17895 -- Made override_settings send the setting_changed signal both w...Aymeric Augustin
2012-03-13Fixed #17882 -- Reopened the database connection when a test changes time zon...Aymeric Augustin
2012-03-01Fixed #17730 - Renamed django.utils.htmlparser to django.utils.html_parser to...Carl Meyer
2012-02-03Made a bunch more edits up until [17418]Adrian Holovaty
2012-02-01Improved the fix of r17416 so it actually works on all platforms. Refs #17469.Aymeric Augustin
2012-02-01Fixed #17469 -- Prevented a double URL-to-filesystem path translation in the ...Aymeric Augustin
2012-01-31Fixed #16921 -- Added assertHTMLEqual and assertHTMLNotEqual assertions, and ...Carl Meyer
2012-01-31Fixed #17604 - Added context-manager capability to assertTemplateUsed and ass...Carl Meyer
2012-01-30Fixed #10868 -- Stopped restoring database connections after the tests' execu...Julien Phalip
2012-01-20Fixed #16885 -- Confirmed features of mirror databases when setting up test d...Aymeric Augustin
2012-01-07Fixed #17499 -- Ensured assertFieldOutput works for fields that customize the...Aymeric Augustin
2011-12-29Added the ability to specify multiple ports available for the `LiveServerTest...Julien Phalip
2011-12-22Fixed #2879 -- Added support for the integration with Selenium and other in-b...Julien Phalip
2011-11-27Fixed #16040 -- Preserved scheme, host and port in the test client when follo...Aymeric Augustin
2011-10-22Fixed #15826 -- Made `assertContains` and `assertNotContains` work with `Simp...Julien Phalip
2011-10-18Fixed #17067 -- reverted some backwards-incompatible changes from r16933 and ...Aymeric Augustin
2011-10-08Fixed #17011 - Made override_settings modify a decorated class in-place rathe...Carl Meyer
2011-10-06Fixed #16705 - Made the test client adhere to the WSGI spec -- in particular,...Aymeric Augustin
2011-10-05Fixed #16990 -- Fixed a couple of small docstring typos in the `django/test/t...Julien Phalip
2011-09-04Also copy `__module__` to our dynamically created TestCase subclass when over...Ramiro Morales
2011-08-23Add the ability to do unordered comparisons in assertQuerysetEqual.Malcolm Tredinnick
2011-08-23Fixed #15838 -- Promoted assertFieldOutput to a general test utility. Thanks ...Russell Keith-Magee