8 lines
138 B
Elixir
8 lines
138 B
Elixir
defmodule Aoc2022Test do
|
|
use ExUnit.Case
|
|
doctest Aoc2022
|
|
|
|
test "greets the world" do
|
|
assert Aoc2022.hello() == :world
|
|
end
|
|
end
|