Move all files to sculpin/

This commit is contained in:
Oliver Davies 2025-10-01 00:01:33 +01:00
parent c5d71803a5
commit 0f61b4e9ee
1514 changed files with 0 additions and 0 deletions

View file

@ -0,0 +1,23 @@
---
date: 2025-06-19
title: You have nothing to lose but your bugs
permalink: /daily/2025/06/19/you-have-nothing-lose-your-bugs
---
I'm re-reading a book called "Growing Object-Oriented Software, Guided by Tests", written by Steve Freeman and Nat Pryce.
In it, is says this as one of the highlighted pieces of text:
> ... you have nothing to lose but your bugs
>
> We cannot empathize strongly enough how liberating it is to work on test-driven code that has thorough test coverage. We find that we can concentrate on the task in hand, confident that we're doing the right work and that it's actually quite hard to break the system - as long as we follow the practices.
I definitely agree with this.
It's great to work on a codebase that has a working and thorough test suite.
I can focus on adding a feature or fixing a bug without worrying about breaking the existing functionality.
I can refactor code and know it still works by just running the tests.
If you haven't already, make adding automated tests to your application a priority.