How to unit test Django-CMS extensions?
I am trying to get some test coverage for a Django-CMS implementation I'm working on and I'm unsure how to unit test plugins/extensions. Has anyone done this before, and if so, how? Some examples would be awesome. Tests as shown by cms/tests/plugins.py is rather integration tests than unit tests, and that's quite heavy-weight and requires a sometimes too large part of the entire system up and running (not neccessary wrong, just impractical when debugging). DjangoCMS is tightly integrated so what I have here are a few techniques to get 'closer to the metal' rather than a complete solution: You