From 2f150bee28525d49e7f36d2e0c7fbeda2352bc3a Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Mon, 24 Mar 2014 11:33:53 -0400 Subject: - rename __multiple__ to __backend__, and apply __backend__ to a large number of tests. - move out logging tests from test_execute to test_logging --- lib/sqlalchemy/testing/suite/test_insert.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lib/sqlalchemy/testing/suite/test_insert.py') diff --git a/lib/sqlalchemy/testing/suite/test_insert.py b/lib/sqlalchemy/testing/suite/test_insert.py index b6fb597dc..3444e15c8 100644 --- a/lib/sqlalchemy/testing/suite/test_insert.py +++ b/lib/sqlalchemy/testing/suite/test_insert.py @@ -12,7 +12,7 @@ from ..schema import Table, Column class LastrowidTest(fixtures.TablesTest): run_deletes = 'each' - __multiple__ = True + __backend__ = True __requires__ = 'implements_get_lastrowid', 'autoincrement_insert' @@ -76,7 +76,7 @@ class LastrowidTest(fixtures.TablesTest): class InsertBehaviorTest(fixtures.TablesTest): run_deletes = 'each' - __multiple__ = True + __backend__ = True @classmethod def define_tables(cls, metadata): @@ -161,7 +161,7 @@ class InsertBehaviorTest(fixtures.TablesTest): class ReturningTest(fixtures.TablesTest): run_create_tables = 'each' __requires__ = 'returning', 'autoincrement_insert' - __multiple__ = True + __backend__ = True __engine_options__ = {"implicit_returning": True} -- cgit v1.2.1