summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/testing/assertions.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/sqlalchemy/testing/assertions.py')
-rw-r--r--lib/sqlalchemy/testing/assertions.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/sqlalchemy/testing/assertions.py b/lib/sqlalchemy/testing/assertions.py
index 1ea366dac..998dde66b 100644
--- a/lib/sqlalchemy/testing/assertions.py
+++ b/lib/sqlalchemy/testing/assertions.py
@@ -343,6 +343,7 @@ class AssertsCompiledSQL(object):
result,
params=None,
checkparams=None,
+ for_executemany=False,
check_literal_execute=None,
check_post_param=None,
dialect=None,
@@ -391,6 +392,9 @@ class AssertsCompiledSQL(object):
if render_postcompile:
compile_kwargs["render_postcompile"] = True
+ if for_executemany:
+ kw["for_executemany"] = True
+
if render_schema_translate:
kw["render_schema_translate"] = True