aoc/23/elixir/test/aoc_test.exs
2023-12-07 12:08:34 +01:00

8 lines
126 B
Elixir

defmodule AocTest do
use ExUnit.Case
doctest Aoc
test "greets the world" do
assert Aoc.hello() == :world
end
end