summaryrefslogtreecommitdiff
path: root/test/engine/test_bind.py
Commit message (Collapse)AuthorAgeFilesLines
* - the raw 2to3 runMike Bayer2013-04-271-3/+3
| | | | - went through examples/ and cleaned out excess list() calls
* The :meth:`.Connection.connect` and :meth:`.Connection.contextual_connect`Mike Bayer2012-11-141-1/+24
| | | | | | | methods now return a "branched" version so that the :meth:`.Connection.close` method can be called on the returned connection without affecting the original. Allows symmetry when using :class:`.Engine` and :class:`.Connection` objects as context managers.
* trying different approaches to test layout. in this one, the testing modulesMike Bayer2012-09-271-5/+5
| | | | | | | 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.
* - remove test.sql._base, test.engine._base, test.orm._base, move those ↵Mike Bayer2011-03-271-2/+2
| | | | | | | classes to a new test.lib.fixtures module - move testing.TestBase to test.lib.fixtures - massive search and replace
* fix some testsMike Bayer2011-02-101-14/+7
|
* - move sqlalchemy.test to test.libMike Bayer2010-11-151-4/+4
|
* - *Major* cleanup / modernization of the InformixMike Bayer2010-10-011-1/+1
| | | | | dialect for 0.6, courtesy Florian Apolloner. [ticket:1906]
* Python-tidy test/engine and test/aaa_profiling, 80% auto + 20% manual ↵Mike Bayer2010-07-111-22/+18
| | | | intervention
* - Table.create() and Table.drop() no longer apply metadata-Mike Bayer2010-04-161-25/+3
| | | | level create/drop events. [ticket:1771]
* merge 0.6 series to trunk.Mike Bayer2009-08-061-2/+2
|
* - unit tests have been migrated from unittest to nose.Mike Bayer2009-06-101-0/+224
See README.unittests for information on how to run the tests. [ticket:970]