From e15d58695d6eff9a1d53e31e5ae3666434a4a1af Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Sun, 14 Jun 2015 16:42:14 -0400 Subject: - Add a new le_() assertion for less than or equals - fix TablesTest to use the bind that we've returned from setup_bind() to emit DELETE statements --- lib/sqlalchemy/testing/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/sqlalchemy/testing/__init__.py') diff --git a/lib/sqlalchemy/testing/__init__.py b/lib/sqlalchemy/testing/__init__.py index adfbe85e3..7482e32a1 100644 --- a/lib/sqlalchemy/testing/__init__.py +++ b/lib/sqlalchemy/testing/__init__.py @@ -19,7 +19,7 @@ def against(*queries): return _against(config._current, *queries) from .assertions import emits_warning, emits_warning_on, uses_deprecated, \ - eq_, ne_, is_, is_not_, startswith_, assert_raises, \ + eq_, ne_, le_, is_, is_not_, startswith_, assert_raises, \ assert_raises_message, AssertsCompiledSQL, ComparesTables, \ AssertsExecutionResults, expect_deprecated, expect_warnings -- cgit v1.2.1