diff options
Diffstat (limited to 'test/orm/test_scoping.py')
-rw-r--r-- | test/orm/test_scoping.py | 16 |
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): |