diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2013-08-28 00:11:15 -0400 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2013-08-28 00:11:15 -0400 |
| commit | 650c7e46be1b21f23f09772811a4b5b79149c7be (patch) | |
| tree | 2525ce1b639b43a49729ebe5a8953e79193ce070 /test/sql | |
| parent | 87b9f48c57bbbc75eb907509002e6a9687b85cdf (diff) | |
| download | sqlalchemy-650c7e46be1b21f23f09772811a4b5b79149c7be.tar.gz | |
- these tests now fail on a normalize name DB, as they should! because we're quoting the lowercase name.
Diffstat (limited to 'test/sql')
| -rw-r--r-- | test/sql/test_metadata.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test/sql/test_metadata.py b/test/sql/test_metadata.py index 00426b227..2498a822c 100644 --- a/test/sql/test_metadata.py +++ b/test/sql/test_metadata.py @@ -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, |
