8 lines
243 B
Elixir
8 lines
243 B
Elixir
|
defmodule AdventOfCode.Day0.Part0Test do
|
||
|
use AdventOfCode.PuzzleCase, module: AdventOfCode.Day0.Part0
|
||
|
|
||
|
test "returns the answer to live the universe and everything" do
|
||
|
assert_solution "life the universe and everything", "42"
|
||
|
end
|
||
|
end
|