aoc/23/elixir/test/aoc_test.exs

9 lines
126 B
Elixir
Raw Normal View History

2023-12-07 11:08:34 +00:00
defmodule AocTest do
use ExUnit.Case
doctest Aoc
test "greets the world" do
assert Aoc.hello() == :world
end
end