Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | - unit tests have been migrated from unittest to nose. | Mike Bayer | 2009-06-10 | 1 | -223/+0 |
| | | | | | See README.unittests for information on how to run the tests. [ticket:970] | ||||
* | - Spiffed up the deprecated decorators & @flipped 'em up top | Jason Kirtland | 2008-07-16 | 1 | -1/+1 |
| | |||||
* | - Moved an ORM test out of engine... | Jason Kirtland | 2008-05-21 | 1 | -47/+5 |
| | |||||
* | r4695 merged to trunk; trunk now becomes 0.5. | Mike Bayer | 2008-05-09 | 1 | -8/+13 |
| | | | | 0.4 development continues at /sqlalchemy/branches/rel_0_4 | ||||
* | - Updated exception messaging for r4220 | Jason Kirtland | 2008-03-04 | 1 | -6/+5 |
| | |||||
* | - updated the naming scheme of the base test classes in test/testlib/testing.py; | Mike Bayer | 2008-02-11 | 1 | -1/+1 |
| | | | | | tests extend from either TestBase or ORMTest, using additional mixins for special assertion methods as needed | ||||
* | - Friendlier exception messages for unbound, implicit execution | Jason Kirtland | 2008-01-31 | 1 | -5/+54 |
| | | | | - Implicit binding failures now raise UnboundExecutionError | ||||
* | - testbase is gone, replaced by testenv | Jason Kirtland | 2008-01-12 | 1 | -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 Kirtland | 2008-01-10 | 1 | -2/+1 |
| | | | | No surprises. | ||||
* | test suite deprecation rampage | Jason Kirtland | 2008-01-09 | 1 | -17/+20 |
| | |||||
* | Firebird dialect now uses SingletonThreadPool as its poolclass. | Roger Demetrescu | 2007-10-07 | 1 | -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 Kirtland | 2007-08-21 | 1 | -0/+1 |
| | | | | omitting modules from sqlalchemy.__all__... | ||||
* | Rearranged engine initialization, its now easy to make ad-hoc testing ↵ | Jason Kirtland | 2007-08-03 | 1 | -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 Bayer | 2007-07-27 | 1 | -24/+25 |
| | | | | maintenance branch in branches/rel_0_3. | ||||
* | hopefully resolved all the PG deadlocks occuring here | Mike Bayer | 2007-07-20 | 1 | -29/+43 |
| | |||||
* | Merged lower case caching, fetching from r2955 | Jason Kirtland | 2007-07-20 | 1 | -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 Bayer | 2007-07-16 | 1 | -0/+20 |
| | | | | metadata | ||||
* | - the various "engine" arguments, such as "engine", "connectable", | Mike Bayer | 2007-07-12 | 1 | -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] |