Igor Chubin
Igor Chubin

Reputation: 64623

What is the right way to test a SQLAlchemy dialect?

I implement my own SQLAlchemy dialect for a RDBMS.

What is the best way to test the dialect, I've implemented? Are there any automated test suites, that could help me?

What is the best way to make sure, that my implementation is correct and supports all necessary features?

Upvotes: 1

Views: 855

Answers (1)

zzzeek
zzzeek

Reputation: 75317

Please see the README included with the SQLAlchemy distribution regarding exactly how this is done as of version 0.8 of SQLAlchemy:

https://github.com/zzzeek/sqlalchemy/blob/master/README.dialects.rst

Upvotes: 1

Related Questions