mirror of
https://github.com/rjNemo/ai_advent_code_2024
synced 2026-06-06 02:26:44 +00:00
8 lines
159 B
Elixir
8 lines
159 B
Elixir
defmodule AdventCode2024Test do
|
|
use ExUnit.Case
|
|
doctest AdventCode2024
|
|
|
|
test "greets the world" do
|
|
assert AdventCode2024.hello() == :world
|
|
end
|
|
end
|