summaryrefslogtreecommitdiff
path: root/test/orm/test_scoping.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2019-01-05 13:00:21 -0500
committerMike Bayer <mike_mp@zzzcomputing.com>2019-01-05 18:00:06 -0500
commite282257555ebc7abfeb92427a27b497baa4e1f09 (patch)
treee19657ad767dd8f8346bd7954d8e163519ec06c0 /test/orm/test_scoping.py
parent38e1ef63e929b344b01887d2e4c693c70093980f (diff)
downloadsqlalchemy-flake8_12.tar.gz
- flake8 refactor - test_ormflake8_12
A full rewrite of all imports and pep8 formatting using zimports, black, commits are broken into sections. Directories included in this commit: test/orm/ test/ext/ did not fully merge this one, needs to be done from scratch Change-Id: I22b42d81bbc35c3a4a8ad4e48dbc78c363cdd4e3 (cherry picked from commit 380f75c051314e615694cdb9186e8ac7de128131)
Diffstat (limited to 'test/orm/test_scoping.py')
-rw-r--r--test/orm/test_scoping.py16
1 files changed, 0 insertions, 16 deletions
diff --git a/test/orm/test_scoping.py b/test/orm/test_scoping.py
index ca3ff6c3f..41e5124d4 100644
--- a/test/orm/test_scoping.py
+++ b/test/orm/test_scoping.py
@@ -15,22 +15,6 @@ from sqlalchemy.testing.schema import Column
from sqlalchemy.testing.schema import Table
-class _ScopedTest(fixtures.MappedTest):
- """Adds another lookup bucket to emulate Session globals."""
-
- run_setup_mappers = "once"
-
- @classmethod
- def setup_class(cls):
- cls.scoping = _base.adict()
- super(_ScopedTest, cls).setup_class()
-
- @classmethod
- def teardown_class(cls):
- cls.scoping.clear()
- super(_ScopedTest, cls).teardown_class()
-
-
class ScopedSessionTest(fixtures.MappedTest):
@classmethod
def define_tables(cls, metadata):