| 230 | |
| 231 | |
| 232 | class UnicodeTextTest(_UnicodeFixture, fixtures.TablesTest): |
| 233 | __requires__ = "unicode_data", "text_type" |
| 234 | __backend__ = True |
| 235 | |
| 236 | datatype = UnicodeText() |
| 237 | |
| 238 | @requirements.empty_strings_text |
| 239 | def test_empty_strings_text(self, connection): |
| 240 | self._test_empty_strings(connection) |
| 241 | |
| 242 | def test_null_strings_text(self, connection): |
| 243 | self._test_null_strings(connection) |
| 244 | |
| 245 | |
| 246 | class ArrayTest(_LiteralRoundTripFixture, fixtures.TablesTest): |
nothing calls this directly
no test coverage detected