summaryrefslogtreecommitdiff
path: root/test/engine/bind.py
Commit message (Collapse)AuthorAgeFilesLines
* - unit tests have been migrated from unittest to nose.Mike Bayer2009-06-101-223/+0
| | | | | See README.unittests for information on how to run the tests. [ticket:970]
* - Spiffed up the deprecated decorators & @flipped 'em up topJason Kirtland2008-07-161-1/+1
|
* - Moved an ORM test out of engine...Jason Kirtland2008-05-211-47/+5
|
* r4695 merged to trunk; trunk now becomes 0.5.Mike Bayer2008-05-091-8/+13
| | | | 0.4 development continues at /sqlalchemy/branches/rel_0_4
* - Updated exception messaging for r4220Jason Kirtland2008-03-041-6/+5
|
* - updated the naming scheme of the base test classes in test/testlib/testing.py;Mike Bayer2008-02-111-1/+1
| | | | | tests extend from either TestBase or ORMTest, using additional mixins for special assertion methods as needed
* - Friendlier exception messages for unbound, implicit executionJason Kirtland2008-01-311-5/+54
| | | | - Implicit binding failures now raise UnboundExecutionError
* - testbase is gone, replaced by testenvJason Kirtland2008-01-121-17/+17
| | | | | | - Importing testenv has no side effects- explicit functions provide similar behavior to the old immediate behavior of testbase - testing.db has the configured db - Fixed up the perf/* scripts
* Reworked r4042- undeclared deprecation warnings are now *fatal* to tests. ↵Jason Kirtland2008-01-101-2/+1
| | | | No surprises.
* test suite deprecation rampageJason Kirtland2008-01-091-17/+20
|
* Firebird dialect now uses SingletonThreadPool as its poolclass.Roger Demetrescu2007-10-071-1/+1
| | | | | | (this fixes all "unsuccessful metadata update\n object XXXXX is in use" test errors) Minor fixes in tests
* `from foo import (name, name)` isn't valid syntax for 2.3. ah well.Jason Kirtland2007-08-211-0/+1
| | | | omitting modules from sqlalchemy.__all__...
* Rearranged engine initialization, its now easy to make ad-hoc testing ↵Jason Kirtland2007-08-031-0/+1
| | | | | | | engines that preserve all of the --options requested Promoted the 'utf8 bind' logic for tests needing utf8 connections into testlib Added a pause before issuing DROPs to rid the testing db of clutter
* merging 0.4 branch to trunk. see CHANGES for details. 0.3 moves to ↵Mike Bayer2007-07-271-24/+25
| | | | maintenance branch in branches/rel_0_3.
* hopefully resolved all the PG deadlocks occuring hereMike Bayer2007-07-201-29/+43
|
* Merged lower case caching, fetching from r2955Jason Kirtland2007-07-201-3/+4
| | | | | Be sure to close rows fetched in reflection (if not autoclosed) Fixed bind test, needed transactional storage engine for mysql
* - fixes for connection bound sessions, connection-bound compiled objects via ↵Mike Bayer2007-07-161-0/+20
| | | | metadata
* - the various "engine" arguments, such as "engine", "connectable",Mike Bayer2007-07-121-0/+172
"engine_or_url", "bind_to", etc. are all present, but deprecated. they all get replaced by the single term "bind". you also set the "bind" of MetaData using metadata.bind = <engine or connection>. this is part of 0.4 forwards compatibility where "bind" is the only keyword. [ticket:631]