Current section
Files
Jump to
Current section
Files
priv/templates/structure/health_check_test.exs
defmodule {app}.Infrastructure.EntryPoints.HealthCheckTest do
alias {app}.Infrastructure.EntryPoint.HealthCheck
use ExUnit.Case
describe "check_http/0" do
test "returns :ok" do
assert HealthCheck.check_http() == :ok
end
end
end