diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2012-09-27 02:37:33 -0400 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2012-09-27 02:37:33 -0400 |
commit | 20cdc64588b0f6ae52f8380c11d0ed848005377b (patch) | |
tree | 08f6cc8f82263f1e402c1c05c83b66a1f4b016ac /test/lib/testing.py | |
parent | 21cac5b598a83ef0e24423dc523629b475aa3af0 (diff) | |
download | sqlalchemy-20cdc64588b0f6ae52f8380c11d0ed848005377b.tar.gz |
trying different approaches to test layout. in this one, the testing modules
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.
Diffstat (limited to 'test/lib/testing.py')
-rw-r--r-- | test/lib/testing.py | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/test/lib/testing.py b/test/lib/testing.py deleted file mode 100644 index f244dfecc..000000000 --- a/test/lib/testing.py +++ /dev/null @@ -1,25 +0,0 @@ -from __future__ import absolute_import - -from .warnings import testing_warn, assert_warnings, resetwarnings - -from ..bootstrap import config -from . import assertsql, util as testutil -from sqlalchemy.util import decorator - -from .exclusions import db_spec, _is_excluded, fails_if, skip_if, future,\ - fails_on, fails_on_everything_except, skip, only_on, exclude, against,\ - _server_version - -from .assertions import emits_warning, emits_warning_on, uses_deprecated, \ - eq_, ne_, is_, is_not_, startswith_, assert_raises, \ - assert_raises_message, AssertsCompiledSQL, ComparesTables, AssertsExecutionResults - -from .util import run_as_contextmanager, rowset, fail, provide_metadata, adict - -crashes = skip - -# various sugar installed by config.py -db = None -requires = None - - |