summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2014-09-13 15:49:53 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2014-09-13 15:49:53 -0400
commitb092d88ce70d166146540ef4a219bfb30580945b (patch)
treea6e778c9cf5cf1ef1f4666a5eebd0da4505148ee
parent62885198acc056629df00e429ec513d9f86ae3c0 (diff)
downloadalembic-b092d88ce70d166146540ef4a219bfb30580945b.tar.gz
test command
-rw-r--r--tests/test_command.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/test_command.py b/tests/test_command.py
index b550471..6d70f5a 100644
--- a/tests/test_command.py
+++ b/tests/test_command.py
@@ -1,13 +1,13 @@
-import unittest
-from . import clear_staging_env, staging_env, \
- _sqlite_testing_config, \
- three_rev_fixture, eq_
from alembic import command
from io import TextIOWrapper, BytesIO
from alembic.script import ScriptDirectory
+from alembic.testing.fixtures import TestBase
+from alembic.testing.env import staging_env, _sqlite_testing_config, \
+ three_rev_fixture, clear_staging_env
+from alembic.testing import eq_
-class StdoutCommandTest(unittest.TestCase):
+class StdoutCommandTest(TestBase):
@classmethod
def setup_class(cls):