This is part of my Little Things series. Imagine we are using an external service in a ruby app, probably a gem of some sort… require 'beerclient' beer_api_client = BeerAPIClient.new(API_KEY) beer_api_client.get_beers What’s wrong with this? We shouldn’t mock it, since we don’t own it. If we do mock it, our…