Use built-in Req stub for LastFm tests

This commit is contained in:
Claudio Ortolina
2025-02-27 13:38:06 +00:00
parent 522b3034aa
commit 3d11cd585d
9 changed files with 58 additions and 53 deletions
+4 -4
View File
@@ -1,13 +1,13 @@
defmodule LastFm.Fixtures.Artist do
@fixtures_folder Path.join([File.cwd!(), "test/support/fixtures/last_fm"])
alias LastFm.Artist
def get_info do
Path.join([@fixtures_folder, "artist.getinfo.json"])
|> File.read!()
|> JSON.decode!()
|> Map.get("artist")
|> Artist.from_api_response()
end
def get_similar_artists do
%{"similarartists" => %{"artist" => []}}
end
end