Testing Elixir/Phoenix Service modules – Twitter API
I've been playing around with Elixir/Phoenix third-party modules. ( Modules that are used to fetch some data from a 3rd party service ) One of those module looking like so: module TwitterService do @twitter_url "https://api.twitter.com/1.1" def fetch_tweets(user) do # The…