Add large battery of tests, primarily workers

This commit is contained in:
Claudio Ortolina
2026-03-01 17:03:36 +00:00
parent 50da389bf9
commit 854e293902
26 changed files with 853 additions and 1 deletions
+10
View File
@@ -0,0 +1,10 @@
defmodule MusicLibrary.ArtistChatTest do
use ExUnit.Case
alias MusicLibrary.ArtistChat
test "implements the Chat behaviour" do
Code.ensure_loaded!(ArtistChat)
assert function_exported?(ArtistChat, :stream_response, 3)
end
end