07 Jul 2022
Getting testscript to do the heavy lifting My main reason for exploring testscript is that I want a framework that allows me to test compiled applications reliably, within regular Go testing files. The app to which I want to apply this experience is dbdeployer, a tool that allows the deployment...
06 Jul 2022
Notes on testscript usage I’ve started exploring testscript, which, according to the docs, “provides support for defining filesystem-based tests by creating scripts in a directory”. It’s an interesting paradigm, because greatly simplifies the testing of compiled applications, rather than functions from the code. I have been searching for a framework...