Reputation: 64623
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
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