DEV Community

Discussion on: How I learned Go Programming

Collapse
 
foresthoffman profile image
Forest Hoffman

Nice article Francis! Have any thoughts on testing with Go? I had to change the structure of my application in order to write proper tests (which turned out to be worth it). I'm curious to know how your shop does it.

Collapse
 
codehakase profile image
Francis Sunday

Thanks Hoffman, for testing, I use the testing package from the standard go library. In the nearest future I'd like to work on an easy testing framework, say something similar to Jasmine or mocha for Node.js