Fixing Tests after change
Checking all the tests and their problems. The 'self.app' is changed to 'self.self._obj.im_self.app' since 'self' here is a function item and self.app doesn't make much sense here. Finding problems due to newly made changes by running tests individually. What's this when I run test_sourcecode.py: it says-
- no factory found for function argument 'path'.
Another similar one in test_smiley.py in converter module -
- no factory found for function argument 'input'
Need to fix these. One idea is to add these arguments using hooks in the tests. Need to look into 'How to add new arguments?'