]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
- these tests now fail on a normalize name DB, as they should! because we're quoting...
authorMike Bayer <mike_mp@zzzcomputing.com>
Wed, 28 Aug 2013 04:11:15 +0000 (00:11 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Wed, 28 Aug 2013 04:11:15 +0000 (00:11 -0400)
test/sql/test_metadata.py

index 00426b227c5291465b8c22b81b3e68625cfaba49..2498a822c0a7f21b0027def4b773d1052ce7680b 100644 (file)
@@ -1057,6 +1057,9 @@ class UseExistingTest(fixtures.TablesTest):
                       autoload=True, keep_existing=True)
         assert isinstance(users.c.name.type, Unicode)
 
+    @testing.skip_if(
+            lambda: testing.db.dialect.requires_name_normalize,
+            "test depends on lowercase as case insensitive")
     def test_keep_existing_quote_no_orig(self):
         meta2 = self._notexisting_fixture()
         users = Table('users', meta2, quote=True,
@@ -1120,6 +1123,9 @@ class UseExistingTest(fixtures.TablesTest):
                       autoload=True, extend_existing=True)
         assert isinstance(users.c.name.type, Unicode)
 
+    @testing.skip_if(
+            lambda: testing.db.dialect.requires_name_normalize,
+            "test depends on lowercase as case insensitive")
     def test_extend_existing_quote_no_orig(self):
         meta2 = self._notexisting_fixture()
         users = Table('users', meta2, quote=True,