op_obj,
)
- @testing.combinations(("test.",), (None,), argnames="alembic_module_prefix")
- def test_render_executesql_alembic_module_prefix(self, alembic_module_prefix):
- self.autogen_context.opts.update(alembic_module_prefix=alembic_module_prefix)
+ @testing.combinations(
+ ("test.",), (None,),
+ argnames="alembic_module_prefix",
+ )
+ def test_render_executesql_alembic_module_prefix(
+ self,
+ alembic_module_prefix,
+ ):
+ self.autogen_context.opts.update(
+ alembic_module_prefix=alembic_module_prefix
+ )
op_obj = ops.ExecuteSQLOp("drop table foo")
eq_(
autogenerate.render_op_text(self.autogen_context, op_obj),