diff options
author | Rodrigo Menezes <rodrigo.menezes@moat.com> | 2014-09-05 13:54:48 -0400 |
---|---|---|
committer | Rodrigo Menezes <rodrigo.menezes@moat.com> | 2014-09-05 13:54:48 -0400 |
commit | fd2faa9bc2c6d2d1b0b8e1738f0bce21e2527bb0 (patch) | |
tree | 150e1e77ee0a139d54b0363751e575aa078c43f2 /lib/sqlalchemy/testing | |
parent | 619b0be0ce05c394613d8565c08c09cac10cdd88 (diff) | |
download | sqlalchemy-pr/128.tar.gz |
Added documentation. Changed my mind - added get_foreign_table_names() only to PGInspect and not in the Dialect. Added tests for PGInspect and removed a bunch of the old test scaffolding.pr/128
Diffstat (limited to 'lib/sqlalchemy/testing')
-rw-r--r-- | lib/sqlalchemy/testing/requirements.py | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/lib/sqlalchemy/testing/requirements.py b/lib/sqlalchemy/testing/requirements.py index f0f0e9e47..a04bcbbdd 100644 --- a/lib/sqlalchemy/testing/requirements.py +++ b/lib/sqlalchemy/testing/requirements.py @@ -253,15 +253,6 @@ class SuiteRequirements(Requirements): return exclusions.closed() @property - def foreign_tables(self): - """target platform supports FOREIGN TABLEs.""" - - return exclusions.only_if( - lambda config: config.db.dialect.supports_foreign_tables, - "%(database)s %(does_support)s 'FOREIGN TABLEs'" - ) - - @property def schemas(self): """Target database must support external schemas, and have one named 'test_schema'.""" @@ -311,12 +302,6 @@ class SuiteRequirements(Requirements): return self.views @property - def foreign_table_reflection(self): - """target database must support inspection of the full CREATE FOREIGN TABLE definition. - """ - return self.foreign_tables - - @property def schema_reflection(self): return self.schemas |