summaryrefslogtreecommitdiff
path: root/test/engine/test_parseconnect.py
Commit message (Collapse)AuthorAgeFilesLines
* Hide password in URL and Engine __repr__pr/25Gunnlaugur Þór Briem2013-09-061-0/+4
| | | | Fixes #2821
* - replace most explicitly-named test objects called "Mock..." withMike Bayer2013-06-301-39/+25
| | | | | | | | | | | | actual mock objects from the mock library. I'd like to use mock for new tests so we might as well use it in obvious places. - use unittest.mock in py3.3 - changelog - add a note to README.unittests - add tests_require in setup.py - have tests import from sqlalchemy.testing.mock - apply usage of mock to one of the event tests. we can be using this approach all over the place.
* that's all of engineMike Bayer2013-05-041-4/+3
|
* - the raw 2to3 runMike Bayer2013-04-271-6/+6
| | | | - went through examples/ and cleaned out excess list() calls
* trying different approaches to test layout. in this one, the testing modulesMike Bayer2012-09-271-2/+3
| | | | | | | 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.
* - break out engine/base.py into base, interfaces, result, util.Mike Bayer2012-08-071-3/+3
| | | | - remove deprecated 0.7 engine methods
* -whitespace bonanza, contdMike Bayer2012-07-281-3/+3
|
* - [feature] Added a new systemMike Bayer2012-04-241-0/+39
| | | | | | | for registration of new dialects in-process without using an entrypoint. See the docs for "Registering New Dialects". [ticket:2462]
* - [feature] Added pool_reset_on_return argumentMike Bayer2012-02-011-3/+24
| | | | | | | | to create_engine, allows control over "connection return" behavior. Also added new arguments 'rollback', 'commit', None to pool.reset_on_return to allow more control over connection return activity. [ticket:2378]
* - fix up the invalidate on connect for py3kMike Bayer2011-07-061-1/+2
| | | | - fix the test for separately installed pysqlite
* - Failures on connect which raise dbapi.ErrorMike Bayer2011-07-011-12/+43
| | | | | | | | | | | | will forward the error to dialect.is_disconnect() and set the "connection_invalidated" flag if the dialect knows this to be a potentially "retryable" condition. Only Oracle ORA-01033 implemented for now. [ticket:2201] - Added ORA-01033 to disconnect codes, which can be caught during a connection event. [ticket:2201]
* - remove test.sql._base, test.engine._base, test.orm._base, move those ↵Mike Bayer2011-03-271-5/+4
| | | | | | | classes to a new test.lib.fixtures module - move testing.TestBase to test.lib.fixtures - massive search and replace
* see #2060Diana Clarke2011-02-281-2/+2
|
* - whitespace removal bonanzaMike Bayer2011-01-021-1/+1
|
* - move sqlalchemy.test to test.libMike Bayer2010-11-151-2/+2
|
* - engine_from_config() now accepts 'debug' forMike Bayer2010-10-151-0/+16
| | | | | | 'echo', 'echo_pool', 'force' for 'convert_unicode', boolean values for 'use_native_unicode'. [ticket:1899]
* Python-tidy test/engine and test/aaa_profiling, 80% auto + 20% manual ↵Mike Bayer2010-07-111-60/+122
| | | | intervention
* another weird nose + py3k fixMike Bayer2010-02-201-1/+2
|
* add "dialect" to the __all__ of each root dialect packageMike Bayer2009-11-011-1/+9
|
* test fixesMike Bayer2009-10-261-3/+7
|
* merge 0.6 series to trunk.Mike Bayer2009-08-061-75/+52
|
* - unit tests have been migrated from unittest to nose.Mike Bayer2009-06-101-0/+230
See README.unittests for information on how to run the tests. [ticket:970]