summaryrefslogtreecommitdiff
path: root/test/sql/test_rowcount.py
Commit message (Collapse)AuthorAgeFilesLines
* - 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]