add simple test case

This commit is contained in:
Inhji 2023-07-09 19:56:59 +02:00
parent aaa525267e
commit a1930863bf

View file

@ -0,0 +1,12 @@
defmodule Chiya.SimpleCase do
use ExUnit.CaseTemplate
using do
quote do
# The default endpoint for testing
@endpoint ChiyaWeb.Endpoint
use ChiyaWeb, :verified_routes
end
end
end