por Carlos Ble | Jul 31, 2008 | DDD
Acabo de terminar la traducción de éste excelente ensayo de Martin Fowler. Quizás sea la primera de una serie de traducciones pensadas para acercar buena literatura inglesa sobre software a hispano hablantes que de otra manera jamás leerán tales artículos. Cualquier...
por Carlos Ble | Jun 11, 2008 | DDD, Test Driven Development
A common test to check a function that operates on the filesystem is to create dummy files in the filesystem. However that is dirty because you have to make sure you’ve got the permissions in the filesystem and you delete the dummy files after the tests and so....
por Carlos Ble | Jun 10, 2008 | DDD, Test Driven Development
Pyunit is a unit tests framework for Python. I believe it is the standard one. It works very well, however to run all the tests within a folder might be not trivial. You can do either hardcode the tests names to build the test suite or use this helper. The helper uses...