Comments & Discussion
MS
The main reason developers don't write unit tests is because they write the code before the test and then can't be bothered adding tests afterwards. However, once one gets in the habit of writing tests first with a rapid red-green-refactor cycle, not only is the coding faster and more satisfying but one feels a lot more confident in the code AND the code will likely be far better structured than it would be if it was written without tests.
I would like to see how Cursor does using this test-driven style.
at 07m35s: I like the idea to pass the query parameters as args and use the call() method:
get() helper should be extended like the post() helper to pass query parameters as an array.