Back to project | MindMap
To clone this phase add umwelt to your project deps and run
make disco great again
[
@doc("make disco great again"),
@spec(new_disco(Bureaucracy.t()) :: Discord.t()),
def new_disco(%Bureaucracy{} = disco_buro_arg) do
end
]
describe("new_disco / 1") do
test "general clause" do
end
end
another confuse
[
@doc("another confuse"),
@spec(new_confuse(Discord.t()) :: Confusion.t()),
def new_confuse(%Discord{} = confuse_disco_arg) do
end
]
describe("new_confuse / 1") do
test "general clause" do
end
end
bring some discord
[
@doc("bring some discord"),
@spec(discordize(Confusion.t(), Chaos.t()) :: Discord.t()),
def discordize(%Chaos{} = disco_chaos_arg, %Confusion{} = disco_confuse_arg) do
end
]
describe("discordize / 2") do
test "general clause" do
end
end
do the confusion
[
@doc("do the confusion"),
@spec(confuse(Chaos.t(), Bureaucracy.t()) :: Confusion.t()),
def confuse(%Bureaucracy{} = confuse_buro_arg, %Chaos{} = confuse_chaos_arg) do
end
]
describe("confuse / 2") do
test "general clause" do
end
end
Explanation of Chaos
defmodule Disco.Aftermath.Chaos do
@moduledoc "Explanation of Chaos"
alias Disco.Aftermath.Chaos
alias Disco.Discord
@type t() :: %__MODULE__{chaos_field: atom}
defstruct chaos_field: nil
@doc "make some chaos"
@spec chaotize(Discord.t()) :: Chaos.t()
def chaotize(%Discord{} = chaos_discord_arg) do
end
end
defmodule Disco.Aftermath.ChaosTest do
use ExUnit.Case, async: true
alias Disco.Aftermath.Chaos
alias Disco.Discord
describe("chaotize / 1") do
test "general clause" do
end
end
end