diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2010-11-28 14:19:44 -0500 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2010-11-28 14:19:44 -0500 |
commit | 58b29394337b5a51ce71e96cc4ba6fd68218a999 (patch) | |
tree | 29070391c9935ed3079a9108fe6fb2dd78e95d7b /test/sql/test_constraints.py | |
parent | 94bb2f428e6408c675c306cafb4683c88b48b3dd (diff) | |
parent | fd4f39648aa7949e2c64626982e401fcbc928e1f (diff) | |
download | sqlalchemy-58b29394337b5a51ce71e96cc4ba6fd68218a999.tar.gz |
- sqlalchemy.test and nose plugin moves back to being entirely
outside of "sqlalchemy" and under "test/".
Rationale:
- coverage plugin works without issue, without need for an awkward
additional package install
- command line for "nosetests" isn't polluted with SQLAlchemy options
[ticket:1949]
Diffstat (limited to 'test/sql/test_constraints.py')
-rw-r--r-- | test/sql/test_constraints.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/test/sql/test_constraints.py b/test/sql/test_constraints.py index 69f29a9bd..56c5c6205 100644 --- a/test/sql/test_constraints.py +++ b/test/sql/test_constraints.py @@ -1,11 +1,11 @@ -from sqlalchemy.test.testing import assert_raises, assert_raises_message +from test.lib.testing import assert_raises, assert_raises_message from sqlalchemy import * from sqlalchemy import exc, schema -from sqlalchemy.test import * -from sqlalchemy.test import config, engines +from test.lib import * +from test.lib import config, engines from sqlalchemy.engine import ddl -from sqlalchemy.test.testing import eq_ -from sqlalchemy.test.assertsql import AllOf, RegexSQL, ExactSQL, CompiledSQL +from test.lib.testing import eq_ +from test.lib.assertsql import AllOf, RegexSQL, ExactSQL, CompiledSQL from sqlalchemy.dialects.postgresql import base as postgresql class ConstraintTest(TestBase, AssertsExecutionResults, AssertsCompiledSQL): |