summaryrefslogtreecommitdiff
path: root/test/sql/test_rowcount.py
Commit message (Collapse)AuthorAgeFilesLines
* - Fixed 1.0 regression where the eager fetch of cursor.rowcount wasMike Bayer2016-01-051-0/+17
| | | | | | | | no longer called for an UPDATE or DELETE statement emitted via plain text or via the :func:`.text` construct, affecting those drivers that erase cursor.rowcount once the cursor is closed such as SQL Server ODBC and Firebird drivers. fixes #3622
* - ensure all tests are named test_*Mike Bayer2014-07-301-1/+1
|
* - update the flake8 rules againMike Bayer2014-07-181-21/+21
| | | | - apply autopep8 + manual fixes to most of test/sql/
* - rename __multiple__ to __backend__, and apply __backend__ to a large ↵Mike Bayer2014-03-241-0/+1
| | | | | | number of tests. - move out logging tests from test_execute to test_logging
* - the raw 2to3 runMike Bayer2013-04-271-3/+3
| | | | - went through examples/ and cleaned out excess list() calls
* trying different approaches to test layout. in this one, the testing modulesMike Bayer2012-09-271-1/+2
| | | | | | | become an externally usable package but still remains within the main sqlalchemy parent package. in this system, we use kind of an ugly hack to get the noseplugin imported outside of the "sqlalchemy" package, while still making it available within sqlalchemy for usage by third party libraries.
* -whitespace bonanza, contdMike Bayer2012-07-281-2/+2
|
* - remove test.sql._base, test.engine._base, test.orm._base, move those ↵Mike Bayer2011-03-271-1/+1
| | | | | | | classes to a new test.lib.fixtures module - move testing.TestBase to test.lib.fixtures - massive search and replace
* - whitespace removal bonanzaMike Bayer2011-01-021-2/+2
|
* - move sqlalchemy.test to test.libMike Bayer2010-11-151-1/+1
|
* fix metadata importMike Bayer2010-04-211-2/+1
|
* some more metadata cleanup since --dropall isnt specified on the buildbotMike Bayer2010-04-161-3/+3
|
* - the execution sequence pulls all rowcount/last inserted IDMike Bayer2010-02-281-6/+3
| | | | | | | | info from the cursor before commit() is called on the DBAPI connection in an "autocommit" scenario. This helps mxodbc with rowcount and is probably a good idea overall. - cx_oracle wants list(), not tuple(), for empty execute. - cleaned up plain SQL param handling
* working on pyodbc / mxodbcMike Bayer2010-02-271-1/+6
|
* - unit tests have been migrated from unittest to nose.Mike Bayer2009-06-101-0/+70
See README.unittests for information on how to run the tests. [ticket:970]