9 lines
132 B
Elixir
9 lines
132 B
Elixir
|
defmodule Aoc20Test do
|
||
|
use ExUnit.Case
|
||
|
doctest Aoc20
|
||
|
|
||
|
test "greets the world" do
|
||
|
assert Aoc20.hello() == :world
|
||
|
end
|
||
|
end
|