Closed maelle closed 3 years ago
The book is about testing but you'll have less things to test if you re-use helper code across your packages.
Having a general function à la gh::gh() for making requests for instance.
gh::gh()
E.g. if you used webfakes to create a fake app then you wouldn't need the fake app to re-create all endpoints of the real thing and your code would still be tested well.
The book is about testing but you'll have less things to test if you re-use helper code across your packages.
Having a general function à la
gh::gh()
for making requests for instance.