summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/testing/mock.py
Commit message (Collapse)AuthorAgeFilesLines
* - ensure rowcount is returned for an UPDATE with no implicit returningMike Bayer2013-08-251-2/+2
| | | | | - modernize test for that - use py3k compatible next() in test_returning/test_versioning
* - replace most explicitly-named test objects called "Mock..." withMike Bayer2013-06-301-0/+15
actual mock objects from the mock library. I'd like to use mock for new tests so we might as well use it in obvious places. - use unittest.mock in py3.3 - changelog - add a note to README.unittests - add tests_require in setup.py - have tests import from sqlalchemy.testing.mock - apply usage of mock to one of the event tests. we can be using this approach all over the place.