(self, original, normalized, is_quote)
| 1043 | ("name", "name", True), # an all-lower case name needs quote forced |
| 1044 | ) |
| 1045 | def test_name_normalize(self, original, normalized, is_quote): |
| 1046 | orig_norm = self.dialect.normalize_name(original) |
| 1047 | |
| 1048 | eq_(orig_norm, normalized) |
| 1049 | if is_quote: |
| 1050 | is_(orig_norm.quote, True) |
| 1051 | else: |
| 1052 | assert not isinstance(orig_norm, quoted_name) |
| 1053 | |
| 1054 | @testing.combinations( |
| 1055 | ("name", "NAME", False), |
nothing calls this directly
no test coverage detected