a691461882
* chore: scaffold project * chore: stand up puzzle solver, puzzle case * feat: solution runner * feat: solution generator
7 lines
243 B
Elixir
7 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
|