cavaliergopher / grab

A download manager package for Go
BSD 3-Clause "New" or "Revised" License
1.38k stars 151 forks source link

Added HTTPClient Interface #74

Closed bt closed 4 years ago

bt commented 4 years ago

Just a quick PR: I changed the requirement of *http.Client to an interface type of HTTPClient.

This improves testability, by allowing test case/packages to implement their own Do method, whether that's faking/mocking a response from HTTP or intercepting a request before it's sent out.