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