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,15 @@
---
title: Replicating a bug with a test
date: 2024-04-28
permalink: daily/2024/04/28/replicating-a-bug-with-a-test
tags:
- software-development
- automated-testing
cta: ~
snippet: |
When fixing a bug, do you try to replicate it with a test?
---
When fixing a bug, can you write a new failing test to replicate the bug?
If so, you verify the bug exists, you know when it's fixed (the test passes), and you know you won't introduce the same bug again - otherwise, the new test will fail.