summaryrefslogtreecommitdiff
path: root/tests/test_op.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2012-01-26 15:43:57 -0500
committerMike Bayer <mike_mp@zzzcomputing.com>2012-01-26 15:43:57 -0500
commit69c7c2bf0b387df7b4e68bb8bccb331688df2beb (patch)
tree47a830a94922b3f4e52386651bba7a201fd13b1d /tests/test_op.py
parent279f8359031a363e0c43a49dd87ac133eba4f6e9 (diff)
downloadalembic-69c7c2bf0b387df7b4e68bb8bccb331688df2beb.tar.gz
turn alembic.op and alembic.context into real proxy modules,
with an accurate system of reflecting the Operations and EnvironmentContext methods into them.
Diffstat (limited to 'tests/test_op.py')
-rw-r--r--tests/test_op.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/test_op.py b/tests/test_op.py
index c85869a..8af4711 100644
--- a/tests/test_op.py
+++ b/tests/test_op.py
@@ -7,6 +7,7 @@ from sqlalchemy import Integer, Column, ForeignKey, \
Boolean
from sqlalchemy.sql import table, column, func
+
def test_rename_table():
context = op_fixture()
op.rename_table('t1', 't2')