Monthly Archives: June 2015

Recycling tests

A couple of people have asked me about recycling tests recently, so I thought I’d put down some thoughts and an example here. Recycling tests is where you reuse old tests rather than writing new ones. Seb Rose changes the … Continue reading

Posted in Uncategorized | Leave a comment

Another ruby oddity: adding an empty hash to a list

When adding a hash to a list you need to call push with brackets or you end up with an empty list. You can also use << which doesn't need brackets either. This isn't the behaviour I'd expect, but I'm … Continue reading

Posted in Uncategorized | Leave a comment