From: Mike Bayer Date: Sat, 13 Sep 2014 19:49:53 +0000 (-0400) Subject: test command X-Git-Tag: rel_0_7_0~91 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b092d88ce70d166146540ef4a219bfb30580945b;p=thirdparty%2Fsqlalchemy%2Falembic.git test command --- diff --git a/tests/test_command.py b/tests/test_command.py index b550471d..6d70f5ad 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):