Wait for theme
new
Cryptoid (context) > Application
Application
Description of Application
concepts
attrs
fields
signatures
⨌ start / 2 (anything) Signature inference is ambiguous, choose stricter type
Head of start/2
⨌ config_change / 3 (anything) Signature inference is ambiguous, choose stricter type
Head of config_change/3
samples
implements
protocols
lib/cryptoid/application.ex
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.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
test/cryptoid/application_test.exs
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
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