def test_name_sqlite(self) -> None:
"""
Tests that if the name ``sqlite`` is given to the database, then a
CHAR descriptor comes back out with 32 characters
"""
uuid_instance = DB_UUID()
dialect_impl = uuid_instance.load_dialect_impl(self.sqlite_dialect)
self.assertIsInstance(
dialect_impl, self.sqlite_dialect.type_descriptor(
CHAR(32)
).__class__
)
评论列表
文章目录