summaryrefslogtreecommitdiff
path: root/tests/test_oracle.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2014-09-13 16:53:57 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2014-09-13 16:53:57 -0400
commitfa080367259f49c93f5055b5b49d175649126d16 (patch)
tree07be66e413850cb0f546f624159a2529a7252ff0 /tests/test_oracle.py
parentf41a1cfcea4360e7e0d445094a7f108000a3c3f6 (diff)
downloadalembic-fa080367259f49c93f5055b5b49d175649126d16.tar.gz
- finish up
Diffstat (limited to 'tests/test_oracle.py')
-rw-r--r--tests/test_oracle.py15
1 files changed, 7 insertions, 8 deletions
diff --git a/tests/test_oracle.py b/tests/test_oracle.py
index d4645fd..8b9c9e5 100644
--- a/tests/test_oracle.py
+++ b/tests/test_oracle.py
@@ -1,20 +1,19 @@
-"""Test op functions against ORACLE."""
-
-from unittest import TestCase
from sqlalchemy import Integer, Column
from alembic import op, command
-from . import op_fixture, capture_context_buffer, \
- _no_sql_testing_config, staging_env, \
+from alembic.testing.fixtures import TestBase
+
+from alembic.testing.fixtures import op_fixture, capture_context_buffer
+from alembic.testing.env import _no_sql_testing_config, staging_env, \
three_rev_fixture, clear_staging_env
-class FullEnvironmentTests(TestCase):
+class FullEnvironmentTests(TestBase):
@classmethod
def setup_class(cls):
- env = staging_env()
+ staging_env()
cls.cfg = cfg = _no_sql_testing_config("oracle")
cls.a, cls.b, cls.c = \
@@ -42,7 +41,7 @@ class FullEnvironmentTests(TestCase):
assert "BYE" in buf.getvalue()
-class OpTest(TestCase):
+class OpTest(TestBase):
def test_add_column(self):
context = op_fixture('oracle')