diff options
Diffstat (limited to 'test/dialect')
| -rw-r--r-- | test/dialect/mysql/test_deprecations.py | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/test/dialect/mysql/test_deprecations.py b/test/dialect/mysql/test_deprecations.py index 32ec5e300..e66037d90 100644 --- a/test/dialect/mysql/test_deprecations.py +++ b/test/dialect/mysql/test_deprecations.py @@ -1,11 +1,8 @@ from sqlalchemy import select from sqlalchemy import table from sqlalchemy.dialects.mysql import base as mysql -from sqlalchemy.dialects.mysql import ENUM -from sqlalchemy.dialects.mysql import SET from sqlalchemy.testing import AssertsCompiledSQL from sqlalchemy.testing import expect_deprecated -from sqlalchemy.testing import expect_deprecated_20 from sqlalchemy.testing import fixtures @@ -22,19 +19,3 @@ class CompileTest(AssertsCompiledSQL, fixtures.TestBase): "dialect and will be removed in a future release" ): self.assert_compile(s, "SELECT FOO * FROM foo") - - -class DeprecateQuoting(fixtures.TestBase): - def test_enum_warning(self): - ENUM("a", "b") - with expect_deprecated_20( - "The 'quoting' parameter to :class:`.mysql.ENUM` is deprecated." - ): - ENUM("a", quoting="foo") - - def test_set_warning(self): - SET("a", "b") - with expect_deprecated_20( - "The 'quoting' parameter to :class:`.mysql.SET` is deprecated.*" - ): - SET("a", quoting="foo") |
