Archive for the ‘links’ Category
MF Bliki: IntegrationContractTest
When testing against an external service, it’s common to mock that external service. But what if the contract for the external service changes? Your tests will still pass, but your application will fail.
Martin Fowler advocates an integration contract test which tests your application against the service. These tests are not run as frequently and … Read more
PyKE: Python Knowledge Engine
Prolog in Python.
Learning Advanced JavaScript
Neopythonic: Why explicit self has to stay
I prefer the explicit ‘self’ in Python as it removes ambiguity. The existence of decorators is also a great argument for ‘self’.