summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichel Albert <michel@albert.lu>2015-07-16 18:31:15 +0200
committerMichel Albert <michel@albert.lu>2015-07-16 18:31:15 +0200
commit1865ad4118db774f1bc03a1cdcf2644df1fee86f (patch)
treec9e6b9750e7dab0544294bcf066fe416a0e5f497
parent8dfc36372b882127c7e8416b3d9e6222f470a2b3 (diff)
downloadalembic-1865ad4118db774f1bc03a1cdcf2644df1fee86f.tar.gz
Reusing existing compat. code from alembic.testing.
-rw-r--r--tests/test_command.py11
1 files changed, 3 insertions, 8 deletions
diff --git a/tests/test_command.py b/tests/test_command.py
index f375367..121d332 100644
--- a/tests/test_command.py
+++ b/tests/test_command.py
@@ -5,14 +5,9 @@ from alembic.testing.fixtures import TestBase, capture_context_buffer
from alembic.testing.env import staging_env, _sqlite_testing_config, \
three_rev_fixture, clear_staging_env, _no_sql_testing_config, \
_sqlite_file_db, write_script, env_file_fixture
-from alembic.testing import eq_, assert_raises_message
+from alembic.testing import eq_, assert_raises_message, mock
from alembic import util
-try:
- from mock import patch
-except ImportError:
- from unittest.mock import patch
-
class HistoryTest(TestBase):
@@ -396,12 +391,12 @@ class EditTest(TestBase):
EditTest.c
)
- with patch('alembic.command.editor.edit') as edit:
+ with mock.patch('alembic.command.editor.edit') as edit:
command.edit(self.cfg)
edit.assert_called_with(expected_call_arg)
def test_edit_with_missing_editor(self):
- with patch('alembic.command.editor.edit') as edit:
+ with mock.patch('alembic.command.editor.edit') as edit:
edit.side_effect = OSError('file not found')
assert_raises_message(
util.CommandError,