NUnit on Mono: TypeLoadException

MonoDevelop 1.0 is available for Ubuntu 8.04, that is great news!. Mono 1.2.6 is the current version for this distro too. MonoDevelop 1.0 is 100 times more stable than 0.14 and it makes me feel productive now. It almost does not crash, the gui layout is very nice and...

Traducción: Los Mocks no son Stubs

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...

Python web service call logger

I wanted to log every access to my web services (using soaplib): Get the client IP, what method is it calling, what parameters, and what class. Rather than write the code to log the access in every method I’ve written a decorator (logWebServiceCall) so you only...

Spring, spring, spring!

Ok, it’s summer right. I am talking about the Spring Framework. I didn’t know there is a Spring for Python! Spring Framework for Java (the original) Spring Framework for .Net (Spring.Net) Spring Framework for...

Pyunit test suite builder

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...