⨌ start / 2 (signature) Signature inference is ambiguous, choose stricter type
Head of start/2
⨌ config_change / 3 (signature) Signature inference is ambiguous, choose stricter type
Head of config_change/3
defmodule Cryptoid.Application do
@moduledoc "Description of Application"
@doc "Head of start/2"
@spec start(any, any) :: any
def start(_type, _args) do
end
@doc "Head of config_change/3"
@spec config_change(any, any, any) :: any
def config_change(changed, _new, removed) do
end
end
defmodule Cryptoid.ApplicationTest do
use ExUnit.Case, async: true
describe("config_change / 3") do
test "fun config_change" do
end
end
describe("start / 2") do
test "fun start" do
end
end
end